1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 15:30:09 +00:00
ohmyzsh/plugins/dircycle/dircycle.plugin.zsh

28 lines
640 B
Bash
Raw Normal View History

# 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
# 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
}
zle -N insert-cycledleft
insert-cycledright () {
zle push-line
LBUFFER='pushd -q -0'
zle accept-line
}
zle -N insert-cycledright
bindkey "\e[1;6D" insert-cycledleft
bindkey "\e[1;6C" insert-cycledright