[input] Add PageUp/Down to navigate history

Incredibly useful when combined history-substring-search and/or a laptop keyboard.

Closes #72
This commit is contained in:
Juraj Fiala 2016-08-15 12:35:57 +02:00 committed by Matt Hamilton
parent e49fdbd260
commit a1341265b9
1 changed files with 8 additions and 0 deletions

View File

@ -61,6 +61,14 @@ if [[ -n "${key_info[End]}" ]]; then
bindkey "${key_info[End]}" end-of-line
fi
if [[ -n "${key_info[PageUp]}" ]]; then
bindkey "${key_info[PageUp]}" up-line-or-history
fi
if [[ -n "${key_info[PageDown]}" ]]; then
bindkey "${key_info[PageDown]}" down-line-or-history
fi
if [[ -n "${key_info[Insert]}" ]]; then
bindkey "${key_info[Insert]}" overwrite-mode
fi