I just recently switched to using bash vi mode with set -o vi
setting in my .bash_profile
. But this leads a problem
I had a tmux mapping that would run the clear-history
command when I pressed <ctrl>+k
. This was the relevant mapping
bind -n C-k clear-history
This does not work in bash vi mode, probably because vi mode takes precedence. How do I resolve or work around this issue?