aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/open.fish
blob: 140269eee134ba39bf8629617c8d6b233a961fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#
# 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 type -f xdg-open >/dev/null
			xdg-open $argv
		else
			mimedb -l -- $argv
		end
	end
end