mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
12 lines
221 B
Fish
12 lines
221 B
Fish
# cd to the current Finder directory
|
|
|
|
function cdf
|
|
if count $argv >/dev/null
|
|
switch $argv[1]
|
|
case -d --description
|
|
echo "cd to the current Finder directory"
|
|
return 0
|
|
end
|
|
end
|
|
cd (pfd)
|
|
end |