Commit 64e1252b authored by Marc Cornellà's avatar Marc Cornellà
Browse files

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

dircycle: remove redundant key bindings
parents 5d8fd93c c8e280f2
...@@ -27,11 +27,11 @@ insert-cycledright () { ...@@ -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
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment