mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 12:22:59 +08:00
9 lines
146 B
Fish
9 lines
146 B
Fish
|
|
|
|
function pushd -d (N_ "Push directory to stack")
|
|
# Comment to avoid set completions
|
|
set -g dirstack (command pwd) $dirstack
|
|
cd $argv[1]
|
|
end
|
|
|