fish-shell/share/completions/cmark.fish
lengyijun aa65856ee0 Fixes #8924 via __fish_complete_suffix overhaul
Before:
* hand write arg parse
* only accepts one suffix

After:
* use `arg_parse` to parse args
* accepts multi suffixes

Closes #9611.
2023-03-12 22:07:44 -05:00

12 lines
689 B
Fish

complete -k -x -c cmark -a "(__fish_complete_suffix .md .markdown)"
complete -x -c cmark -s t -l to -a "html man xml latex commonmark" -d "Output format"
complete -c cmark -l width -d "Wrap width"
complete -c cmark -l hardbreaks -d "Treat newlines as hard line breaks"
complete -c cmark -l nobreaks -d "Render soft line breaks as spaces"
complete -c cmark -l sourcepos -d "Include source position attribute"
complete -c cmark -l validate-utf8 -d "Validate UTF-8"
complete -c cmark -l smart -d "Use smart punctuation"
complete -c cmark -l unsafe -d "Render raw HTML and dangerous URLs"
complete -c cmark -l help -d "Print usage information"
complete -c cmark -l version -d "Print version"