mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 10:01:11 +02:00
* 21096: update for gv 3.6, which uses double-hyphen options.
This commit is contained in:
parent
b2ba2fd207
commit
d6e79bddc0
2 changed files with 46 additions and 38 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-04-06 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 21096: Completion/X/Command/_gv: update for gv 3.6,
|
||||
which uses double-hyphen options.
|
||||
|
||||
2005-04-06 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* Carlos Phillips <carlos.phillips@mail.mcgill.ca>:
|
||||
|
|
|
@ -1,39 +1,42 @@
|
|||
#compdef gv gview
|
||||
#compdef gv
|
||||
|
||||
_xt_arguments \
|
||||
'(-nosafer)-safer' \
|
||||
'(-safer)-nosafer' \
|
||||
'(-noquiet)-quiet' \
|
||||
'(-quiet)-noquiet' \
|
||||
'(-nocenter)-center' \
|
||||
'(-center)-nocenter' \
|
||||
'(-noswap)-swap' \
|
||||
'(-swap)-noswap' \
|
||||
'(-noantialias)-antialias' \
|
||||
'(-antialias)-noantialias' \
|
||||
'(-nodsc)-dsc' \
|
||||
'(-dsc)-nodsc' \
|
||||
'(-noeof)-eof' \
|
||||
'(-eof)-noeof' \
|
||||
'(-nopixmap)-pixmap' \
|
||||
'(-pixmap)-nopixmap' \
|
||||
'(-nowatch)-watch' \
|
||||
'(-watch)-nowatch' \
|
||||
'(-noresize)-resize' \
|
||||
'(-resize)-noresize' \
|
||||
'(-grayscale -color)-monochrome' \
|
||||
'(-monochrome -color)-grayscale' \
|
||||
'(-grayscale -color)-monochrome' \
|
||||
'(-landscape -seascape -upsidedown)-portrait' \
|
||||
'(-portrait -seascape -upsidedown)-landscape' \
|
||||
'(-portrait -landscape -upsidedown)-seascape' \
|
||||
'(-portrait -landscape -seascape)-upsidedown' \
|
||||
-{h,help,v,spartan} \
|
||||
'-arguments:ghostscript arguments:' \
|
||||
'-page:label of first page:' \
|
||||
'-media:page size:(Letter Legal Statement Tabloid Ledger Folio Quarto 10x14 Executive A3 A4 A5 B4 B5)' \
|
||||
'-scale:scale entry:' \
|
||||
'-scalebase:scale base:' \
|
||||
'-ad:resource file:_files' \
|
||||
'-style:resource file:_files' \
|
||||
'*:file: _pspdf -z'
|
||||
_arguments \
|
||||
'-geometry:geometry:_x_geometry' \
|
||||
'(--nosafer)--safer' \
|
||||
'(--safer)--nosafer' \
|
||||
'(--noquiet)--quiet' \
|
||||
'(--quiet)--noquiet' \
|
||||
'(--nocenter)--center' \
|
||||
'(--center)--nocenter' \
|
||||
'(--noswap)--swap' \
|
||||
'(--swap)--noswap' \
|
||||
'(--noantialias)--antialias' \
|
||||
'(--antialias)--noantialias' \
|
||||
'(--nodsc)--dsc' \
|
||||
'(--dsc)--nodsc' \
|
||||
'(--noeof)--eof' \
|
||||
'(--eof)--noeof' \
|
||||
'(--nopixmap)--pixmap' \
|
||||
'(--pixmap)--nopixmap' \
|
||||
'(--nowatch)--watch' \
|
||||
'(--watch)--nowatch' \
|
||||
'(--noresize)--resize' \
|
||||
'(--resize)--noresize' \
|
||||
'(--grayscale --color)--monochrome' \
|
||||
'(--monochrome --color)--grayscale' \
|
||||
'(--grayscale --color)--monochrome' \
|
||||
'(--landscape --seascape --upsidedown)--portrait' \
|
||||
'(--portrait --seascape --upsidedown)--landscape' \
|
||||
'(--portrait --landscape --upsidedown)--seascape' \
|
||||
'(--portrait --landscape --seascape)--upsidedown' \
|
||||
--{help,spartan} \
|
||||
-{h,v} \
|
||||
'--arguments=:ghostscript arguments:' \
|
||||
'--page=:label of first page:' \
|
||||
'--media=:page size:(Letter Legal Statement Tabloid Ledger Folio Quarto 10x14 Executive A3 A4 A5 B4 B5)' \
|
||||
'--orientation=:orientation:' \
|
||||
'--scale=:scale entry:' \
|
||||
'--scalebase=:scale base:' \
|
||||
'--ad=:resource file:_files' \
|
||||
'--style=:resource file:_files' \
|
||||
'*:file: _pspdf --z'
|
||||
|
|
Loading…
Reference in a new issue