63 lines
1.7 KiB
Bash
63 lines
1.7 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This script enables bash autocompletion for pandoc. To enable
|
||
|
# bash completion, add this to your .bashrc:
|
||
|
# eval "$(pandoc --bash-completion)"
|
||
|
|
||
|
_pandoc()
|
||
|
{
|
||
|
local cur prev opts lastc informats outformats datadir
|
||
|
COMPREPLY=()
|
||
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
||
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
||
|
|
||
|
# These should be filled in by pandoc:
|
||
|
opts="%s"
|
||
|
informats="%s"
|
||
|
outformats="%s"
|
||
|
datadir="%s"
|
||
|
|
||
|
case "${prev}" in
|
||
|
--from|-f|--read|-r)
|
||
|
COMPREPLY=( $(compgen -W "${informats}" -- ${cur}) )
|
||
|
return 0
|
||
|
;;
|
||
|
--to|-t|--write|-w|-D|--print-default-template)
|
||
|
COMPREPLY=( $(compgen -W "${outformats}" -- ${cur}) )
|
||
|
return 0
|
||
|
;;
|
||
|
--email-obfuscation)
|
||
|
COMPREPLY=( $(compgen -W "references javascript none" -- ${cur}) )
|
||
|
return 0
|
||
|
;;
|
||
|
--latex-engine)
|
||
|
COMPREPLY=( $(compgen -W "pdflatex lualatex xelatex" -- ${cur}) )
|
||
|
return 0
|
||
|
;;
|
||
|
--print-default-data-file)
|
||
|
COMPREPLY=( $(compgen -W "reference.odt reference.docx $(find ${datadir} | sed -e 's/.*\/data\///')" -- ${cur}) )
|
||
|
return 0
|
||
|
;;
|
||
|
--highlight-style)
|
||
|
COMPREPLY=( $(compgen -W "pygments tango espresso zenburn kate monochrome haddock" -- ${cur}) )
|
||
|
return 0
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
case "${cur}" in
|
||
|
-*)
|
||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||
|
return 0
|
||
|
;;
|
||
|
*)
|
||
|
COMPREPLY=( $(compgen -f ${cur}) )
|
||
|
return 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
}
|
||
|
|
||
|
complete -F _pandoc pandoc
|