1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-25 23:30:08 +00:00

Merge pull request #4623 from apjanke/dircycle-remove-redundant-bindings

dircycle: remove redundant key bindings
This commit is contained in:
Marc Cornellà 2015-11-20 18:08:11 +01:00
commit 64e1252bd5

View file

@ -27,11 +27,11 @@ insert-cycledright () {
zle -N insert-cycledright zle -N insert-cycledright
# add key bindings for iTerm2 # These sequences work for xterm, Apple Terminal.app, and probably others.
if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then # Not for rxvt-unicode, but it doesn't seem differentiate Ctrl-Shift-Arrow
bindkey "^[[1;6D" insert-cycledleft # from plain Shift-Arrow, at least by default.
bindkey "^[[1;6C" insert-cycledright # iTerm2 does not have these key combinations defined by default; you will need
else # to add them under "Keys" in your profile if you want to use this. You can do
bindkey "\e[1;6D" insert-cycledleft # this conveniently by loading the "xterm with Numeric Keypad" preset.
bindkey "\e[1;6C" insert-cycledright bindkey "\e[1;6D" insert-cycledleft
fi bindkey "\e[1;6C" insert-cycledright