drop default key bindings (move them into README)

https://github.com/sorin-ionescu/prezto/issues/422

3c5363ef9b
This commit is contained in:
Suraj N. Kurapati 2013-04-25 14:43:04 -07:00
parent 3bd84be43e
commit 82fbef5132
2 changed files with 19 additions and 21 deletions

View file

@ -72,25 +72,6 @@ function history-substring-search-down() {
zle -N history-substring-search-up
zle -N history-substring-search-down
#-----------------------------------------------------------------------------
# shortcut key bindings
#-----------------------------------------------------------------------------
# bind P and N for EMACS mode
bindkey -M emacs '^P' history-substring-search-up
bindkey -M emacs '^N' history-substring-search-down
# bind k and j for VI mode
bindkey -M vicmd 'k' history-substring-search-up
bindkey -M vicmd 'j' history-substring-search-down
# bind up and down arrow keys
for keycode in '[' '0'; do
bindkey "^[${keycode}A" history-substring-search-up
bindkey "^[${keycode}B" history-substring-search-down
done
unset keycode
#-----------------------------------------------------------------------------
# implementation details
#-----------------------------------------------------------------------------