docs(bindkeys): copy comment from arch wiki's zsh page

This commit is contained in:
George Rawlinson 2019-11-05 19:19:52 +13:00
parent 04f520aa1d
commit fb2394591b
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 2 additions and 2 deletions

View File

@ -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() {