From a06f53f142e1e8edbb769c1651569bea64b37e42 Mon Sep 17 00:00:00 2001 From: Juraj Fiala Date: Mon, 15 Aug 2016 12:35:57 +0200 Subject: [PATCH] Add PageUp/Down for navigating through history. Incredibly useful when combined history-substring-search and/or a laptop keyboard. --- modules/input/init.zsh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/input/init.zsh b/modules/input/init.zsh index 5145c0c..be9de1d 100644 --- a/modules/input/init.zsh +++ b/modules/input/init.zsh @@ -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