aboutsummaryrefslogtreecommitdiff
path: root/data/bash_completion.tpl
AgeCommit message (Collapse)AuthorFilesLines
2021-11-03Update bash_completion.tplS.P.H1-2/+10
- Specify local scope for highlight_styles; prevents global namespace pollution when sourcing completion from a file rather than adding `eval "$(pandoc --bash-completion)"` to .bashrc - Add argument completion for --print-highlight-style, --eol, and --markdown-headings
2019-03-07Add tectonic as an option for --pdf-engine. (#5346)Cormac Relf1-1/+1
Closes #5345 Runs tectonic on STDIN instead of a temporary .tex file, so that it looks in the working directory for `\include` and `\input` like the rest of the engines. Allows overriding the output directory without messing up the args with `--pdf-engine-opt=--outdir --pdf-engine-opt="$DIR"`.
2019-03-03Update bash completion template.John MacFarlane1-1/+5
Added `--ipynb-output` and `latexmk` pdf-engine.
2018-04-12Fix bash completion for `--print-default-data-file`.John MacFarlane1-3/+3
Previously this looked in the filesystem, even if pandoc was compiled with `embed_data_files` (and sometimes it looked in a nonexistent build directory). Now the bash completion script just includes a hard-coded list of data file names. See #4549.
2017-09-11Support for PDF generation via `weasyprint` and `prince` (#3909)Mauro Bieg1-2/+2
* Rename --latex-engine to --pdf-engine * In `Text.Pandoc.Options.WriterOptions`, rename `writerLaTeXEngine` to `writerPdfEngine` and `writerLaTeXArgs` to `writerPdfArgs`. * Add support for `weasyprint` and `prince`, in addition to `wkhtmltopdf`, for PDF generation via HTML (closes #3906). * `Text.Pandoc.PDF.html2pdf`: use stdin instead of intermediate HTML file
2016-12-07Really fixed bash completion this time!John MacFarlane1-1/+1
Closes #2749.
2016-12-07Improved bash-completion for filenames with spaces.John MacFarlane1-1/+1
2016-12-07Fixed bash completion for filenames with spaces.John MacFarlane1-4/+20
Closes #2749.
2015-08-13Added `--bash-completion` option.John MacFarlane1-0/+62
This generates a bash completion script. To use: eval "$(pandoc --bash-completion)"