Hi aus9
Records are the application names, fields are the filenames they contain, press f to search for filenames.
---if I want a exact match....I would choose case sensitive as well....my search term for vga becomes
\vga.h
The screenshot shows the search mode is currently case sensitive. Press c and the message will change to
Case insensitive search.
but pressing enter does not allow me to escape the include field
That's because \v is not a legal sequence. The program also put the cursor on the v to show you where the
error is. When you went to edit, the Menu box changed to Edit Help which reads:
Wildcards ?=Single character *=Zero or more characters
#=Single digit
To search for an actual ?, *, #, or \, precede it with a \
So * means look for zero or more characters where as \* means to look for an actual asterisk.
The example *vga*.h* says to match anything that has zero or more characters, followed by vga, followed by
zero or more characters, followed by a .h , followed by zero or more characters.
If changed to *vga#*.h* it adds the requirement that vga is immediately followed by a digit.
If changed to *vga\#*.h* it changes that requirement that vga is immediately followed by a pound sign.
Hope this clears things up a bit.