v0.9.32
Pre-release
Pre-release
This release addresses issues #55 and #56: Add support for file exclusion (e.g -*.txt
) as well as exact file match (e.g. "BUILD"
) for searching files.
-
To exclude file names from a Code Search, use the
-
prefix character. As before, use;
to enter multiple file name patterns.- For example:
*.txt;-*test*
includes all files with thetxt
extension, except for the files that contain thetest
sub-string.
- For example:
-
Double quotes can now be used to prevent implicitly surrounding simple searches with "*".
- For example,
"foo"
results in matching files that are named exactlyfoo
, and nothing else (i.e.foo.txt
will not be included).
- For example,