So, in Visual Studios, you can โFind in Filesโ a line - I find it very useful for finding a file in which certain markup or JS can be found, I use VS for my main code editor for development on the Internet.
The problem is that most of my projects use node.js and node grunt / gulp building tools, etc., so I have a node_modules folder somewhere in my project, which makes FIND forever since there are thousands of files!
How can I search in files and folders for a string, but not in a node_modules directory.
In SublimeText2, you can delete a folder from a project without deleting it, this will stop the search located there ...
A RegExp will be for a string not filePath :(
source
share