mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
1b71f91a01
darcs-hash:20061117162438-ac50b-5c4c7f0bd8bf53a16e16ecfead9569e642b7160f.gz
24 lines
430 B
Fish
24 lines
430 B
Fish
|
|
#
|
|
# This allows us to use 'open FILENAME' to open a given file in the default
|
|
# application for the file.
|
|
#
|
|
|
|
if not test (uname) = Darwin
|
|
function open -d (N_ "Open file in default application")
|
|
if count $argv >/dev/null
|
|
switch $argv[1]
|
|
case -h --h --he --hel --help
|
|
__fish_print_help dirh
|
|
return 0
|
|
end
|
|
end
|
|
|
|
if type -f xdg-open >/dev/null
|
|
xdg-open $argv
|
|
else
|
|
mimedb -l -- $argv
|
|
end
|
|
end
|
|
end
|
|
|