Skip to content

v0.9.32

Pre-release
Pre-release
Compare
Choose a tag to compare
@rpaquay rpaquay released this 12 Feb 19:21

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 the txt extension, except for the files that contain the test sub-string.
  • Double quotes can now be used to prevent implicitly surrounding simple searches with "*".

    • For example, "foo" results in matching files that are named exactly foo, and nothing else (i.e. foo.txt will not be included).