GH-21: fix bindkey strings for up and down arrows

This commit is contained in:
Jon Rogers 2013-06-18 20:01:51 -07:00 committed by Suraj N. Kurapati
parent 82fbef5132
commit 99341be866

View file

@ -30,7 +30,7 @@ Usage
2. Bind keyboard shortcuts to this script's functions:
# bind UP and DOWN arrow keys
for keycode in '[' '0'; do
for keycode in '[' 'O'; do
bindkey "^[${keycode}A" history-substring-search-up
bindkey "^[${keycode}B" history-substring-search-down
done