OLD | NEW |
| (Empty) |
1 #compdef lore | |
2 _arguments -s -A "-*" \ | |
3 '*:files:_files' \ | |
4 '(--book)-b[The book file to generate a book from]:book:_files' \ | |
5 '(-b)--book=[The book file to generate a book from]:book:_files' \ | |
6 '--config=[config]:config:_files' \ | |
7 '(--docsdir)-d[docsdir]:docsdir:_files' \ | |
8 '(-d)--docsdir=[docsdir]:docsdir:_files' \ | |
9 '--help[Display this help and exit.]' \ | |
10 '(--index)-x[The base filename you want to give your index file]:index:_files' \ | |
11 '(-x)--index=[The base filename you want to give your index file]:index:_files'
\ | |
12 '(--input)-i[input]:input:_files' \ | |
13 '(-i)--input=[input]:input:_files' \ | |
14 '(--inputext)-e[The extension that your Lore input files have]:inputext:_files'
\ | |
15 '(-e)--inputext=[The extension that your Lore input files have]:inputext:_files'
\ | |
16 '(--linkrel)-l[linkrel]:linkrel:_files' \ | |
17 '(-l)--linkrel=[linkrel]:linkrel:_files' \ | |
18 '(--null)-n[Do not report filenames]' \ | |
19 '(-n)--null[Do not report filenames]' \ | |
20 '(--number)-N[Add chapter/section numbers to section headings]' \ | |
21 '(-N)--number[Add chapter/section numbers to section headings]' \ | |
22 '(--output)-o[output]:output:_files' \ | |
23 '(-o)--output=[output]:output:_files' \ | |
24 '(--plain)-p[Report filenames without progress bar]' \ | |
25 '(-p)--plain[Report filenames without progress bar]' \ | |
26 '--prefixurl=[The prefix to stick on to relative links; only useful when process
ing directories]:prefixurl:_files' \ | |
27 '--version[version]' \ | |
28 && return 0 | |
OLD | NEW |