create binding CTRL (^) like in zsh (bind)
Good day to you!
Haven't found a way to create keybindnig, like ^O
(CTRL-o).
in my case i use this for lfcd
.
or ^e
- for editing current command in $EDITOR
Here is how i'm doing that in zsh:
bindkey -s '^o' 'lfcd\n'
bindkey '^e' edit-command-line
Thanks!