mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
11 lines
298 B
Fish
11 lines
298 B
Fish
|
|
||
|
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
|