dircycle.plugin.zsh 1.35 KB
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
# NO_PUSHD_MINUS syntax:
#  pushd +N: start counting from left of `dirs' output
#  pushd -N: start counting from right of `dirs' output

11
switch-to-dir () {
12
13
	[[ ${#dirstack} -eq 0 ]] && return

14
15
16
17
18
19
20
21
22
	while ! builtin pushd -q $1 &>/dev/null; do
		# We found a missing directory: pop it out of the dir stack
		builtin popd -q $1

		# Stop trying if there are no more directories in the dir stack
		[[ ${#dirstack} -eq 0 ]] && break
	done
}

23
insert-cycledleft () {
24
25
26
	emulate -L zsh
	setopt nopushdminus

27
	switch-to-dir +1
28
	zle reset-prompt
29
}
30
zle -N insert-cycledleft
31
32

insert-cycledright () {
33
34
35
	emulate -L zsh
	setopt nopushdminus

36
	switch-to-dir -0
37
	zle reset-prompt
38
}
39
zle -N insert-cycledright
40

41

42
43
44
45
46
47
48
49
# These sequences work for xterm, Apple Terminal.app, and probably others.
# Not for rxvt-unicode, but it doesn't seem differentiate Ctrl-Shift-Arrow
# from plain Shift-Arrow, at least by default.
# iTerm2 does not have these key combinations defined by default; you will need
# to add them under "Keys" in your profile if you want to use this. You can do
# this conveniently by loading the "xterm with Numeric Keypad" preset.
bindkey "\e[1;6D" insert-cycledleft
bindkey "\e[1;6C" insert-cycledright