You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'd like to select a query, whether single or multiple selections.
Currently, for single selection, the <tab> key is bound to select a query, and this key binding is hard coded.
For multiple selection, there are no key bindings to select a query, and <tab> is used to toggle selection.
I'd like to use same key (e.g. ctrl-y) to select a query for both single and multiple selections.
Describe the solution you'd like
Remove SuggestionType::SingleRecommendation and make SuggestionType::SingleSelection (--prevent-extra option) as default.
Allow to forward --bind options to fzf.
User can select a query by binding print-query action to arbitrary keys.
Thanks for opening your first issue here! In case you're facing a bug, please update navi to the latest version first. Maybe the bug is already solved! :)
Is your feature request related to a problem? Please describe.
I'd like to select a query, whether single or multiple selections.
Currently, for single selection, the
<tab>
key is bound to select a query, and this key binding is hard coded.For multiple selection, there are no key bindings to select a query, and
<tab>
is used to toggle selection.I'd like to use same key (e.g.
ctrl-y
) to select a query for both single and multiple selections.Describe the solution you'd like
Remove
SuggestionType::SingleRecommendation
and makeSuggestionType::SingleSelection
(--prevent-extra
option) as default.Allow to forward
--bind
options tofzf
.User can select a query by binding
print-query
action to arbitrary keys.Example:
config.yaml
cheatseet
Example of
print-query
actions infzf
are following.I confirmed with fzf version 0.55.0.
Describe alternatives you've considered
In fact, selecting query can be achieved in the current implementation by setting the following
config.yaml
cheatseet
This approach is annoying because it requires the
--prevent-extra
and--fzf-overrides
options.Additional context
The text was updated successfully, but these errors were encountered: