To exclude some files or folders from your search, use the following syntax in “Search field:”:
-
Exclude from search *.bak and *.old files
my*.*|*.bak *.old -
Don’t search in .svn folders
*.cs|.svn\ -
Don’t search in .git folder
*.cs|.git\
The meaning of | is: ‘and not’. Everything after it is excluded from the search. This syntax can also be used in other places, for example inside the ignore list.