Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
9c1241a6
Commit
9c1241a6
authored
Mar 27, 2014
by
Robby Russell
Browse files
Merge pull request #2662 from aeriksson/master
Fix broken reverse-menu-complete keybinding.
parents
ffc17b6b
9650861e
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/key-bindings.zsh
View file @
9c1241a6
...
...
@@ -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
[k
dch1
]
}
"
!=
""
]]
;
then
bindkey
"
${
terminfo
[k
dch1
]
}
"
reverse-menu-complete
# [Shift-Tab] - move through the completion menu backwards
if
[[
"
${
terminfo
[k
cbt
]
}
"
!=
""
]]
;
then
bindkey
"
${
terminfo
[k
cbt
]
}
"
reverse-menu-complete
# [Shift-Tab] - move through the completion menu backwards
fi
bindkey
'^?'
backward-delete-char
# [Backspace] - delete backward
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment