diff options
-rw-r--r-- | data/bash_completion.tpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/data/bash_completion.tpl b/data/bash_completion.tpl index 60140a1e4..71fe583f5 100644 --- a/data/bash_completion.tpl +++ b/data/bash_completion.tpl @@ -29,8 +29,12 @@ _pandoc() COMPREPLY=( $(compgen -W "references javascript none" -- ${cur}) ) return 0 ;; + --ipynb-output) + COMPREPLY=( $(compgen -W "all none best" -- ${cur}) ) + return 0 + ;; --pdf-engine) - COMPREPLY=( $(compgen -W "pdflatex lualatex xelatex wkhtmltopdf weasyprint prince context pdfroff" -- ${cur}) ) + COMPREPLY=( $(compgen -W "pdflatex lualatex xelatex latexmk wkhtmltopdf weasyprint prince context pdfroff" -- ${cur}) ) return 0 ;; --print-default-data-file) |