mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-29 22:41:16 -03:00
9 lines
145 B
Fish
9 lines
145 B
Fish
|
|
|
|
function pushd -d (_ "Push directory to stack")
|
|
# Comment to avoid set completions
|
|
set -g dirstack (command pwd) $dirstack
|
|
cd $argv[1]
|
|
end
|
|
|