fish-shell/share/functions/popd.fish
axel 8ace1739f5 Add missing newline in error message for popd function. Thanks to Phipip Ganchev.
darcs-hash:20061005064419-ac50b-4770f393ea02761a5f4b4044b456d1b618d6da23.gz
2006-10-05 16:44:19 +10:00

13 lines
187 B
Fish

function popd -d (N_ "Pop dir from stack")
if test $dirstack[1]
cd $dirstack[1]
else
printf (_ "%s: Directory stack is empty...\n") popd
return 1
end
set -e dirstack[1]
end