aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/pushd.fish
blob: 5c4f288e142d8d656796f6cfa578ab18c7db7c9a (plain)
1
2
3
4
5
6
7
8


function pushd -d (_ "Push directory to stack")
	# Comment to avoid set completions
	set -g dirstack (command pwd) $dirstack
	cd $argv[1]
end