mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-31 14:14:16 +08:00
e6e287ae1f
darcs-hash:20060215175925-ac50b-5dc52c615650779771a6c4a3c5d006b72dbca67d.gz
14 lines
184 B
Fish
14 lines
184 B
Fish
|
|
function popd -d (_ "Pop dir from stack")
|
|
if test $dirstack[1]
|
|
cd $dirstack[1]
|
|
else
|
|
printf (_ "%s: Directory stack is empty...") popd
|
|
return 1
|
|
end
|
|
|
|
set -e dirstack[1]
|
|
|
|
end
|
|
|