chromium / vs-chromium

A Visual Studio extension containing a collection of tools to help contributing code to the Chromium project.
BSD 3-Clause "New" or "Revised" License
311 stars 90 forks source link

Add support for exact filenames for searches #56

Closed rpaquay closed 4 years ago

rpaquay commented 4 years ago

Currently when typing foo in File Paths of Code Search tool window, the search is implicitly transformed to *foo* (basically a sub-string match). This is useful in most cases, but there are cases where searching for a specific filename can be useful (e.g. Makefile).

To enable these "exact" match searches, the proposal is to allow using double quotes around the path.

So, "foo" would search only files that are exactly named foo

rpaquay commented 4 years ago

Fixed in (pre)release 0.9.32 (https://github.com/chromium/vs-chromium/releases/tag/v0.9.32)