I\'m looking for a way to get n++\'s find in files dialog to exclude certain files...
the only reference I\'ve found so far is this http://sourceforge.net/project/showno
Please note tested with Notepad++ v7.8.7
as n00b has answered
This works:
*.* !*.obj
But this does not work!: *.*;!*.obj => searches no files!
*.*;!*.obj
on the other hand this does work *.*; !*.obj
*.*; !*.obj