mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
17 lines
333 B
Plaintext
17 lines
333 B
Plaintext
#compdef acroread pdf2dsc pdf2ps pdfimages pdfinfo pdftopbm pdftops pdftotext xpdf
|
|
|
|
local expl ext=''
|
|
|
|
# ghostscript:
|
|
# pdf2dsc pdf2ps
|
|
# xpdf:
|
|
# pdfimages pdfinfo pdftopbm pdftops pdftotext xpdf
|
|
|
|
if [[ "$1" == '-z' ]]; then
|
|
ext='(|.gz|.Z)'
|
|
shift
|
|
fi
|
|
|
|
_description files expl 'PDF file'
|
|
_files "$@" "$expl[@]" -g "*.(#i)pdf$ext"
|