feat(zsh): add keybindings for home & end

This commit is contained in:
Price Hiller 2023-06-16 13:27:47 -05:00
parent b785d18522
commit 3c5dfbb063
No known key found for this signature in database

View File

@ -1,3 +1,5 @@
autoload -z edit-command-line
zle -N edit-command-line
bindkey "^X^E" edit-command-line
bindkey '^[[H' beginning-of-line
bindkey '^[[F' end-of-line