mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-09 19:51:26 +01:00
10 lines
334 B
Text
10 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)(-.)'"
|