mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00: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
|