When using Notepad++ Find in Files feature is there a way to adjust the filter, so that it will search more than one filetype (e.g. *.c and *.h)?


Solution 1:

Separate multiple filters with a semi-colon (;).

*.txt ; *.log

Or you can just use a space

*.txt *.log