Replies: 1 comment
|
There is no built-in mode for "rerun completion when the fzf query becomes shorter than the original completion prefix." The reason is that fzf-tab first asks zsh's normal completion system for candidates, then passes that fixed candidate list to fzf. So after There is a So the reliable workflow is still: cancel fzf, edit the buffer from |
Uh oh!
There was an error while loading. Please reload this page.
I'm wondering if it is possible to make fzf-tab to restart completion if I shorten the input beyond the input after which I triggered completion?
For example if I type
gr<TAB>, I get list of commands/variables/functions/… starting withgr, I can filter this list by typing more, but if I reduce it tog, I still see only the list starting withgr. So I would like it to behave as if I cancelled the completion, removed last character and triggered the completion again.All reactions