If you tagged some files like this
1 2 3 |
<!-- //localonly --> |
You could find them easily if needed in Sublime with a regex search.
1 2 3 |
localonly(?! echo) |
This would find all files that contain “localonly” and do NOT contain “echo”.
Ctrl “F” then select the square (with a start in it) furthest left called “regular expression”