-
Notifications
You must be signed in to change notification settings - Fork 255
Add fuzzy finder behavior to filter functionality #129
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
Comments
FYI: My current way of searching the target quickly is via the filter and the vim-builtin The current problem I found with the existing filter is that:
demo_filter_._builtin.mov |
I'm hoping that the new fuzzy finder mode I am about to commit will cut out the second step of using the built in As far as Ctwl-w, the search popup is just a normal buffer and not a terminal, so the usual vim commands apply. If you want C-w to act as a delete word command in insert mode, just add an insert mode mapping. |
This has been added to main. I decided to add it as a new command called |
This is probably related to #116. I find myself naturally wanting to use Up/Down keys when filtering the tree to select files in the search results, and I am annoyed when it doesn't do anything. I am going to change that by adding a "fuzzy finder mode" option which would:
C-j
/C-k
C-p
/C-n
) move the tree's focused node up and down.<enter>
key behavior so that whatever file is currently focused is opened and the filter is clearedThis makes the functionality closer to what Telescope and other fuzzy finders do.
The big question for anyone that reads this is: Should this just be the new default or should it be a new option that is opted into?
The text was updated successfully, but these errors were encountered: