1
0
Fork 0
mirror of synced 2024-09-07 14:46:22 -04:00

Add PageUp/Down for navigating through history.

Incredibly useful when combined history-substring-search and/or a laptop keyboard.
This commit is contained in:
Juraj Fiala 2016-08-15 12:35:57 +02:00 committed by GitHub
parent bb81ab09b9
commit a06f53f142

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