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


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