From fb2394591b2070224c450a51083d70819d17cf35 Mon Sep 17 00:00:00 2001 From: George Rawlinson Date: Tue, 5 Nov 2019 19:19:52 +1300 Subject: [PATCH] docs(bindkeys): copy comment from arch wiki's zsh page --- source/bindkeys.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/bindkeys.zsh b/source/bindkeys.zsh index 5cb26a4..9ade0a3 100644 --- a/source/bindkeys.zsh +++ b/source/bindkeys.zsh @@ -37,8 +37,8 @@ bindkey '^[[1;5C' forward-word # [Ctrl-RightArrow] - move forward one word bindkey '^[[1;5D' backward-word # [Ctrl-LeftArrow] - move backward one word -# make sure the terminal is in application mode when zle is active -# only then are the values from $terminfo valid +# Finally, make sure the terminal is in application mode, when zle is +# active. Only then are the values from $terminfo valid. if (( ${+terminfo[smkx]} && ${+terminfo[rmkx]} )); then autoload -Uz add-zle-hook-widget zle_application_mode_start() {