2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-30 22:03:29 +00:00
fish-shell/share/functions/__fish_complete_tex.fish

10 lines
312 B
Fish

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