Fix dircycle plugin

dircycle right did not behave as expected and was fixed
This commit is contained in:
Rotem Yaari 2014-12-11 23:41:47 +02:00
parent 43aa3783f8
commit 9677cfb34e
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@
eval "insert-cycledleft () { zle push-line; LBUFFER='pushd -q +1'; zle accept-line }"
zle -N insert-cycledleft
bindkey "\e[1;6D" insert-cycledleft
eval "insert-cycledright () { zle push-line; LBUFFER='pushd -q -0'; zle accept-line }"
eval "insert-cycledright () { zle push-line; LBUFFER='pushd -q +0'; zle accept-line }"
zle -N insert-cycledright
bindkey "\e[1;6C" insert-cycledright