aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/popd.fish
blob: cf2e8ff37121e953a12e3eaca8b5a33751615a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

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