1
0
Fork 0

Add dircycle mode: cycle directory stack with Ctrl+Shift+Left/Right

pull/252/head
Rotem Yaari 12 years ago
parent 2f4f11bd40
commit 505c80a816

@ -0,0 +1,8 @@
# Overview
`dircycle` provides you with a way to quickly cycle through your dir stack without destroying the currently entered command.
# Usage
* Ctrl+Shift+Left: rotates the directory stack one step backward
* Ctrl+Shift+Right: rotates the directory stack one step forward

@ -0,0 +1,13 @@
##
# dircycle plugin: enables cycling through the directory
# stack using Ctrl+Shift+Left/Right
alias dircycle-left="pushd -q +1"
alias dircycle-right="pushd -q -0"
eval "insert-cycledleft () { zle push-line; LBUFFER='dircycle-left'; zle accept-line }"
zle -N insert-cycledleft
bindkey "\e[1;6D" insert-cycledleft
eval "insert-cycledright () { zle push-line; LBUFFER='dircycle-right'; zle accept-line }"
zle -N insert-cycledright
bindkey "\e[1;6C" insert-cycledright
Loading…
Cancel
Save