2014-12-15 23:43:01 +00:00
|
|
|
# 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
|
2012-01-26 20:25:51 +00:00
|
|
|
|
2014-12-15 23:43:01 +00:00
|
|
|
# NO_PUSHD_MINUS syntax:
|
|
|
|
# pushd +N: start counting from left of `dirs' output
|
|
|
|
# pushd -N: start counting from right of `dirs' output
|
|
|
|
|
2024-07-27 14:38:11 +00:00
|
|
|
# Either switch to a directory from dirstack, using +N or -N syntax
|
|
|
|
# or switch to a directory by path, using `switch-to-dir -- <path>`
|
2016-06-17 08:44:52 +00:00
|
|
|
switch-to-dir () {
|
2024-07-27 14:38:11 +00:00
|
|
|
# If $1 is --, then treat $2 as a directory path
|
|
|
|
if [[ $1 == -- ]]; then
|
|
|
|
# We use `-q` because we don't want chpwd to run, we'll do it manually
|
|
|
|
[[ -d "$2" ]] && builtin pushd -q "$2" &>/dev/null
|
|
|
|
return $?
|
|
|
|
fi
|
|
|
|
|
2018-10-02 19:31:26 +00:00
|
|
|
setopt localoptions nopushdminus
|
|
|
|
[[ ${#dirstack} -eq 0 ]] && return 1
|
2016-11-10 18:46:15 +00:00
|
|
|
|
2016-06-17 08:44:52 +00:00
|
|
|
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
|
2018-10-02 19:31:26 +00:00
|
|
|
[[ ${#dirstack} -eq 0 ]] && return 1
|
2016-06-17 08:44:52 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2014-12-15 23:43:01 +00:00
|
|
|
insert-cycledleft () {
|
2024-07-27 14:38:11 +00:00
|
|
|
switch-to-dir +1 || return $?
|
2014-12-20 19:35:52 +00:00
|
|
|
|
2018-10-02 19:31:26 +00:00
|
|
|
local fn
|
2024-07-27 14:38:11 +00:00
|
|
|
for fn in chpwd $chpwd_functions precmd $precmd_functions; do
|
2018-10-02 19:31:26 +00:00
|
|
|
(( $+functions[$fn] )) && $fn
|
|
|
|
done
|
2014-12-16 00:29:06 +00:00
|
|
|
zle reset-prompt
|
2014-12-15 23:43:01 +00:00
|
|
|
}
|
2012-01-26 20:25:51 +00:00
|
|
|
zle -N insert-cycledleft
|
2014-12-15 23:43:01 +00:00
|
|
|
|
|
|
|
insert-cycledright () {
|
2024-07-27 14:38:11 +00:00
|
|
|
switch-to-dir -0 || return $?
|
2014-12-20 19:35:52 +00:00
|
|
|
|
2018-10-02 19:31:26 +00:00
|
|
|
local fn
|
2024-07-27 14:38:11 +00:00
|
|
|
for fn in chpwd $chpwd_functions precmd $precmd_functions; do
|
2018-10-02 19:31:26 +00:00
|
|
|
(( $+functions[$fn] )) && $fn
|
|
|
|
done
|
2014-12-16 00:29:06 +00:00
|
|
|
zle reset-prompt
|
2014-12-15 23:43:01 +00:00
|
|
|
}
|
2012-01-26 20:25:51 +00:00
|
|
|
zle -N insert-cycledright
|
2014-12-15 23:43:01 +00:00
|
|
|
|
2024-07-27 14:38:11 +00:00
|
|
|
insert-cycledup () {
|
|
|
|
switch-to-dir -- .. || return $?
|
|
|
|
|
|
|
|
local fn
|
|
|
|
for fn in chpwd $chpwd_functions precmd $precmd_functions; do
|
|
|
|
(( $+functions[$fn] )) && $fn
|
|
|
|
done
|
|
|
|
zle reset-prompt
|
|
|
|
}
|
|
|
|
zle -N insert-cycledup
|
|
|
|
|
|
|
|
insert-cycleddown () {
|
|
|
|
switch-to-dir -- "$(find . -mindepth 1 -maxdepth 1 -type d | sort -n | head -n 1)" || return $?
|
|
|
|
|
|
|
|
local fn
|
|
|
|
for fn in chpwd $chpwd_functions precmd $precmd_functions; do
|
|
|
|
(( $+functions[$fn] )) && $fn
|
|
|
|
done
|
|
|
|
zle reset-prompt
|
|
|
|
}
|
|
|
|
zle -N insert-cycleddown
|
2014-12-24 00:33:28 +00:00
|
|
|
|
2015-11-18 11:53:15 +00:00
|
|
|
# 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.
|
2024-07-27 14:38:11 +00:00
|
|
|
#
|
2015-11-18 11:53:15 +00:00
|
|
|
# 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.
|
2024-07-27 14:38:11 +00:00
|
|
|
bindkey "\e[1;6D" insert-cycledleft # Ctrl+Shift+Left
|
|
|
|
bindkey "\e[1;6C" insert-cycledright # Ctrl+Shift+Right
|
|
|
|
bindkey "\e[1;6A" insert-cycledup # Ctrl+Shift+Up
|
|
|
|
bindkey "\e[1;6B" insert-cycleddown # Ctrl+Shift+Down
|