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 it possible to omit the prefix key of tmux-easy-motion? Similarly to omitting Tmux its prefix using the bind-key -n command.
My use case: when I am in copy-mode, I have unassigned keys left that I want to bind to tmux-easy-motion command directly. For example: when I press "k" I want to run the "@easy-motion-binding-w" directly (without having to press the prefix "Space").
My attempts to achieving this were:
Setting the tmux-easy-motion prefix to ""
set -g @easy-motion-copy-mode-prefix ""
which did not work.
Binding "k" to a sequence of keys:
bind-key -T copy-mode-vi k send-keys "" w
which did send a "Space" and a "w" but it triggered the default "w" and not the "@easy-motion-binding-w".
Thanks for the good plugin!
The text was updated successfully, but these errors were encountered:
BartSte
changed the title
Disable the pre-fix key in copy-modebind-key -n equivalent
Aug 5, 2023
Is it possible to omit the prefix key of tmux-easy-motion? Similarly to omitting Tmux its prefix using the
bind-key -n
command.My use case: when I am in copy-mode, I have unassigned keys left that I want to bind to tmux-easy-motion command directly. For example: when I press "k" I want to run the "@easy-motion-binding-w" directly (without having to press the prefix "Space").
My attempts to achieving this were:
bind-key -T copy-mode-vi k send-keys " " w
Thanks for the good plugin!
The text was updated successfully, but these errors were encountered: