-
Notifications
You must be signed in to change notification settings - Fork 30k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow additional fuzzy search within files found via CTRL+P #39542
Comments
Maybe it would be better for the separator to be |
I don't know ultimately whether
with criteria number 1 being far more important. |
The user could also have to type a modified key, such as ⌘; to avoid possible conflicts with file names (where that key combination is given simply to explain what I mean by "modified key" rather than as a specific suggestion). |
My favourite choice would be the |
This would be great. An awesome feature that exists in SublimeText. |
I don't think Sublime has this feature? They use |
This issue is being closed to keep the number of issues in our inbox on a manageable level, we are closing issues that are not going to be addressed in the foreseeable future: We look at the number of votes the issue has received and the number of duplicate issues filed. If you disagree and feel that this issue is crucial: We are happy to listen and to reconsider. If you wonder what we are up to, please see our roadmap and issue reporting guidelines. Thanks for your understanding and happy coding! |
Never mind, I do see it with |
How about allowing users to fine-tune their fuzzy searching within a project/workspace? This could be done by treating the
:
character (which AFAIK is not an allowed character in Windows and Unix filenames) as a separator.Format:
<fuzzy matching file paths>:<fuzzy matching text inside found files>
Examples/use cases:
function:getnode
- Find files with path fuzzy-matching the stringfunction
that also contain lines that fuzzy-match stringgetnode
.controller:action
- Same logic. Could be used for example to trivially find allcontroller
s that define at least oneaction
(yes, possibly with some false positives).Example
Current behaviour
ctrl+p
, enterfunction
Proposed behaviour
ctrl+p
, enterfunction:getnode
And would find only these two files, because contents of the files ...
...\nikic\php-parser\lib\PhpParser\Builder\Function_.php
...\nikic\php-parser\lib\PhpParser\Node\Stmt\Function_.php
... match
getnode
"fuzzily":The text was updated successfully, but these errors were encountered: