Created
July 15, 2021 11:15
-
-
Save ashee/7721493213119667891fb08d2af9ae95 to your computer and use it in GitHub Desktop.
readline zle key shortcuts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# useful key shortcuts in bash readline or zle | |
"^X^V" vi-cmd-mode | |
"^X^U" undo | |
"^X^B" vi-match-bracket | |
"^X^E" edit-command-line | |
"^X^F" vi-find-next-char | |
"^X^J" vi-join | |
"^X^K" kill-buffer | |
"^@" set-mark-command | |
"^X^X" exchange-point-and-mark | |
# Get all bindings | |
``` | |
bindkey | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment