mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-10 08:01:41 +01:00
11 lines
334 B
Text
11 lines
334 B
Text
|
#compdef okular
|
||
|
local extns
|
||
|
|
||
|
extns="{pdf,ps,eps,dvi}(.gz|.bz2)(#c,1)|djvu|tiff|chm|cbr|cbz"
|
||
|
|
||
|
_arguments \
|
||
|
'(-p --page)'{-p,--page}'[Page of the document to be shown]:page: ' \
|
||
|
'--presentation[Start the document in presentation mode]' \
|
||
|
'--unique[Unique instance control]' \
|
||
|
"*:Okular documents:_files -g '*.(#i)($extns)(-.)'"
|