blob: 60140a1e4087f41a7b3d83f88b5eff695cd56f17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# 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 datafiles
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"
highlight_styles="%s"
datafiles="%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
;;
--pdf-engine)
COMPREPLY=( $(compgen -W "pdflatex lualatex xelatex wkhtmltopdf weasyprint prince context pdfroff" -- ${cur}) )
return 0
;;
--print-default-data-file)
COMPREPLY=( $(compgen -W "${datafiles}" -- ${cur}) )
return 0
;;
--wrap)
COMPREPLY=( $(compgen -W "auto none preserve" -- ${cur}) )
return 0
;;
--track-changes)
COMPREPLY=( $(compgen -W "accept reject all" -- ${cur}) )
return 0
;;
--reference-location)
COMPREPLY=( $(compgen -W "block section document" -- ${cur}) )
return 0
;;
--top-level-division)
COMPREPLY=( $(compgen -W "section chapter part" -- ${cur}) )
return 0
;;
--highlight-style)
COMPREPLY=( $(compgen -W "${highlight_styles}" -- ${cur}) )
return 0
;;
*)
;;
esac
case "${cur}" in
-*)
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;
*)
local IFS=$'\n'
COMPREPLY=( $(compgen -X '' -f "${cur}") )
return 0
;;
esac
}
complete -o filenames -o bashdefault -F _pandoc pandoc
|