aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_complete_tex.fish
blob: 637b746411bb91eb3535904094f42199dc526f93 (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 --description "Display help and exit"
	complete -c $argv -o version --description "Display version and exit"
	complete -c $argv -x -a "(
		__fish_complete_suffix (commandline -ct) .tex '(La)TeX file'
	)"

end