mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-09 07:17:14 +08:00
12 lines
234 B
Fish
12 lines
234 B
Fish
![]() |
# pushd to the current Finder directory
|
||
|
|
||
|
function pushdf
|
||
|
if count $argv >/dev/null
|
||
|
switch $argv[1]
|
||
|
case -d --description
|
||
|
echo "pushd to the current Finder directory"
|
||
|
return 0
|
||
|
end
|
||
|
end
|
||
|
pushd (pfd)
|
||
|
end
|