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

This commit is contained in:
Rotem Yaari 2012-08-30 21:29:23 +03:00
parent 2f4f11bd40
commit 505c80a816
2 changed files with 21 additions and 0 deletions

View file

@ -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

13
modules/dircycle/init.zsh Normal file
View file

@ -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