mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
dircycle: fix error on insert-cycledleft if dirstack is empty
This commit is contained in:
parent
0b340bc3a5
commit
6685aac42c
1 changed files with 2 additions and 0 deletions
|
@ -9,6 +9,8 @@
|
|||
# pushd -N: start counting from right of `dirs' output
|
||||
|
||||
switch-to-dir () {
|
||||
[[ ${#dirstack} -eq 0 ]] && return
|
||||
|
||||
while ! builtin pushd -q $1 &>/dev/null; do
|
||||
# We found a missing directory: pop it out of the dir stack
|
||||
builtin popd -q $1
|
||||
|
|
Loading…
Reference in a new issue