diff options
author | Robby Russell <robby@planetargon.com> | 2014-03-27 21:18:02 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-03-27 21:18:02 -0700 |
commit | 9c1241a680c34a38f610ce58b2a0c75eba4cbd69 (patch) | |
tree | fcf1b7a327294b3f7a699fe59a7fae533ecbb177 | |
parent | ffc17b6b4d55f74b9d3786ba790b7340865e5014 (diff) | |
parent | 9650861e56a3404313adc35cbcb1f32a7015b99d (diff) | |
download | zsh-9c1241a680c34a38f610ce58b2a0c75eba4cbd69.tar.gz zsh-9c1241a680c34a38f610ce58b2a0c75eba4cbd69.tar.bz2 zsh-9c1241a680c34a38f610ce58b2a0c75eba4cbd69.zip |
Merge pull request #2662 from aeriksson/master
Fix broken reverse-menu-complete keybinding.
-rw-r--r-- | lib/key-bindings.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/key-bindings.zsh b/lib/key-bindings.zsh index 5f3f237c7..9063c6a18 100644 --- a/lib/key-bindings.zsh +++ b/lib/key-bindings.zsh @@ -46,8 +46,8 @@ bindkey ' ' magic-space # [Space] - do history exp bindkey '^[[1;5C' forward-word # [Ctrl-RightArrow] - move forward one word bindkey '^[[1;5D' backward-word # [Ctrl-LeftArrow] - move backward one word -if [[ "${terminfo[kdch1]}" != "" ]]; then - bindkey "${terminfo[kdch1]}" reverse-menu-complete # [Shift-Tab] - move through the completion menu backwards +if [[ "${terminfo[kcbt]}" != "" ]]; then + bindkey "${terminfo[kcbt]}" reverse-menu-complete # [Shift-Tab] - move through the completion menu backwards fi bindkey '^?' backward-delete-char # [Backspace] - delete backward |