dircycle.plugin.zsh 1.55 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
	setopt localoptions nopushdminus
	[[ ${#dirstack} -eq 0 ]] && return 1
14

15
16
17
18
19
	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
20
		[[ ${#dirstack} -eq 0 ]] && return 1
21
22
23
	done
}

24
insert-cycledleft () {
25
	switch-to-dir +1 || return
26

27
28
29
30
	local fn
	for fn (chpwd $chpwd_functions precmd $precmd_functions); do
		(( $+functions[$fn] )) && $fn
	done
31
	zle reset-prompt
32
}
33
zle -N insert-cycledleft
34
35

insert-cycledright () {
36
	switch-to-dir -0 || return
37

38
39
40
41
	local fn
	for fn (chpwd $chpwd_functions precmd $precmd_functions); do
		(( $+functions[$fn] )) && $fn
	done
42
	zle reset-prompt
43
}
44
zle -N insert-cycledright
45

46

47
48
49
50
51
52
53
54
# 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