dircycle.plugin.zsh 640 Bytes
Newer Older
1
2
3
4
5
# enables cycling through the directory stack using
# Ctrl+Shift+Left/Right
#
# left/right direction follows the order in which directories
# were visited, like left/right arrows do in a browser
6

7
8
9
10
11
12
13
14
15
16
# NO_PUSHD_MINUS syntax:
#  pushd +N: start counting from left of `dirs' output
#  pushd -N: start counting from right of `dirs' output
setopt nopushdminus

insert-cycledleft () {
	zle push-line
	LBUFFER='pushd -q +1'
	zle accept-line
}
17
zle -N insert-cycledleft
18
19
20
21
22
23

insert-cycledright () {
	zle push-line
	LBUFFER='pushd -q -0'
	zle accept-line
}
24
zle -N insert-cycledright
25
26

bindkey "\e[1;6D" insert-cycledleft
27
bindkey "\e[1;6C" insert-cycledright