aboutsummaryrefslogtreecommitdiffhomepage
path: root/init/functions/__fish_complete_tex.fish
blob: 871aa41afff9f5f4112a41e73162169ce8d94993 (plain)
1
2
3
4
5
6
7
8
9
10

function __fish_complete_tex -d "Common completions for all tex commands"

	complete -c $argv -o help -d (_ "Display help and exit")
	complete -c $argv -o version -d (_ "Display version and exit")
	complete -c $argv -x -a "(
		__fish_complete_suffix (commandline -ct) .tex '(La)TeX file'
	)"

end