[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:
parent
e49fdbd260
commit
a1341265b9
1 changed files with 8 additions and 0 deletions
|
@ -61,6 +61,14 @@ if [[ -n "${key_info[End]}" ]]; then
|
||||||
bindkey "${key_info[End]}" end-of-line
|
bindkey "${key_info[End]}" end-of-line
|
||||||
fi
|
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
|
if [[ -n "${key_info[Insert]}" ]]; then
|
||||||
bindkey "${key_info[Insert]}" overwrite-mode
|
bindkey "${key_info[Insert]}" overwrite-mode
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue