mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-10 10:21:23 +02:00
Haakon Riiser: 18473: new completion for Acrobat Reader 5.0.x
This commit is contained in:
parent
a5f7097d9a
commit
7d36150a8d
4 changed files with 57 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
2003-04-25 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* Haakon Riiser: 18473: Completion/X/Command/_acroread,
|
||||
Completion/Unix/Type/_pdf: new completion for Acrobat Reader 5.0.x
|
||||
|
||||
* 18472: zshconfig.ac, Completion/Base/Core/_wanted,
|
||||
Completion/Linux/Command/_uml, Completion/Mandrake/Command/_urpmi,
|
||||
Completion/Unix/Command/_figlet, Completion/Unix/Command/_grep,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#compdef acroread pdf2dsc pdf2ps pdfimages pdfinfo pdftopbm pdftops pdftotext xpdf pdfopt pdffonts
|
||||
#compdef pdf2dsc pdf2ps pdfimages pdfinfo pdftopbm pdftops pdftotext xpdf pdfopt pdffonts
|
||||
|
||||
local expl ext=''
|
||||
|
||||
|
|
|
@ -2,5 +2,5 @@ DISTFILES_SRC='
|
|||
.distfiles
|
||||
_gv _netscape _xauth _xfig _mozilla _xterm _xwit
|
||||
_nedit _vnc _x_utils _xdvi _xmodmap _xset _xv
|
||||
_dcop _gqview _xloadimage
|
||||
_acroread _dcop _gqview _xloadimage
|
||||
'
|
||||
|
|
52
Completion/X/Command/_acroread
Normal file
52
Completion/X/Command/_acroread
Normal file
|
@ -0,0 +1,52 @@
|
|||
#compdef acroread
|
||||
|
||||
local context state line
|
||||
typeset -A opt_args
|
||||
|
||||
local global_opts
|
||||
global_opts=(
|
||||
"*:pdf_file_1 [pdf_file_2] ...:_files -g '*.(#i)pdf'"
|
||||
"-display:host\:display:"
|
||||
"-geometry:[<width>x<height>][{+|-}<x offset>{+|-}<y offset>]:"
|
||||
-help
|
||||
-helpall
|
||||
\*-iconic
|
||||
\*+iconic
|
||||
"-name:application name:"
|
||||
"*-setenv:<var>=<value>:"
|
||||
-tempFile
|
||||
"-tempFileTitle:title:"
|
||||
"(+useFrontEndProgram)-useFrontEndProgram" "(-useFrontEndProgram)+useFrontEndProgram"
|
||||
"-visual:or <visual class> [depth=<depth>]:(id= best default)"
|
||||
"-xrm:X resource specification:"
|
||||
"-toPostScript:*::PostScript conversion options:= ->tops"
|
||||
)
|
||||
|
||||
local tops_opts
|
||||
tops_opts=(
|
||||
"-pairs:*:pdf_file_1 ps_file_1 ...:_files -g '*.(#i)(pdf|ps)'"
|
||||
-binary
|
||||
"-start:integer:"
|
||||
"-end:integer:"
|
||||
-optimizeForSpeed
|
||||
-landscape
|
||||
-reverse
|
||||
"(-even)-odd"
|
||||
"(-odd)-even"
|
||||
-commentsOff
|
||||
"(-level2 -level3)-level1"
|
||||
"(-level1 -level3)-level2"
|
||||
"(-level1 -level2)-level3"
|
||||
-printerhalftones
|
||||
-saveVM
|
||||
"-scale:integer:"
|
||||
-shrink
|
||||
"-size:page size (or custom size wxh in points):(letter tabloid ledger legal executive a3 a4 a5 b4 b5)"
|
||||
"-transQuality:transparency flattening level:(1 2 3 4 5)"
|
||||
"*:pdf_file ... [ps_dir]:_files -g '*.(#i)pdf'"
|
||||
)
|
||||
|
||||
_arguments $global_opts && return 0
|
||||
[[ "$state" = tops ]] && _arguments $tops_opts && return 0
|
||||
|
||||
return 1
|
Loading…
Reference in a new issue