mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-04 10:41: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>
|
2005-04-06 Peter Stephenson <pws@csr.com>
|
||||||
|
|
||||||
* Carlos Phillips <carlos.phillips@mail.mcgill.ca>:
|
* Carlos Phillips <carlos.phillips@mail.mcgill.ca>:
|
||||||
|
|
|
@ -1,39 +1,42 @@
|
||||||
#compdef gv gview
|
#compdef gv
|
||||||
|
|
||||||
_xt_arguments \
|
_arguments \
|
||||||
'(-nosafer)-safer' \
|
'-geometry:geometry:_x_geometry' \
|
||||||
'(-safer)-nosafer' \
|
'(--nosafer)--safer' \
|
||||||
'(-noquiet)-quiet' \
|
'(--safer)--nosafer' \
|
||||||
'(-quiet)-noquiet' \
|
'(--noquiet)--quiet' \
|
||||||
'(-nocenter)-center' \
|
'(--quiet)--noquiet' \
|
||||||
'(-center)-nocenter' \
|
'(--nocenter)--center' \
|
||||||
'(-noswap)-swap' \
|
'(--center)--nocenter' \
|
||||||
'(-swap)-noswap' \
|
'(--noswap)--swap' \
|
||||||
'(-noantialias)-antialias' \
|
'(--swap)--noswap' \
|
||||||
'(-antialias)-noantialias' \
|
'(--noantialias)--antialias' \
|
||||||
'(-nodsc)-dsc' \
|
'(--antialias)--noantialias' \
|
||||||
'(-dsc)-nodsc' \
|
'(--nodsc)--dsc' \
|
||||||
'(-noeof)-eof' \
|
'(--dsc)--nodsc' \
|
||||||
'(-eof)-noeof' \
|
'(--noeof)--eof' \
|
||||||
'(-nopixmap)-pixmap' \
|
'(--eof)--noeof' \
|
||||||
'(-pixmap)-nopixmap' \
|
'(--nopixmap)--pixmap' \
|
||||||
'(-nowatch)-watch' \
|
'(--pixmap)--nopixmap' \
|
||||||
'(-watch)-nowatch' \
|
'(--nowatch)--watch' \
|
||||||
'(-noresize)-resize' \
|
'(--watch)--nowatch' \
|
||||||
'(-resize)-noresize' \
|
'(--noresize)--resize' \
|
||||||
'(-grayscale -color)-monochrome' \
|
'(--resize)--noresize' \
|
||||||
'(-monochrome -color)-grayscale' \
|
'(--grayscale --color)--monochrome' \
|
||||||
'(-grayscale -color)-monochrome' \
|
'(--monochrome --color)--grayscale' \
|
||||||
'(-landscape -seascape -upsidedown)-portrait' \
|
'(--grayscale --color)--monochrome' \
|
||||||
'(-portrait -seascape -upsidedown)-landscape' \
|
'(--landscape --seascape --upsidedown)--portrait' \
|
||||||
'(-portrait -landscape -upsidedown)-seascape' \
|
'(--portrait --seascape --upsidedown)--landscape' \
|
||||||
'(-portrait -landscape -seascape)-upsidedown' \
|
'(--portrait --landscape --upsidedown)--seascape' \
|
||||||
-{h,help,v,spartan} \
|
'(--portrait --landscape --seascape)--upsidedown' \
|
||||||
'-arguments:ghostscript arguments:' \
|
--{help,spartan} \
|
||||||
'-page:label of first page:' \
|
-{h,v} \
|
||||||
'-media:page size:(Letter Legal Statement Tabloid Ledger Folio Quarto 10x14 Executive A3 A4 A5 B4 B5)' \
|
'--arguments=:ghostscript arguments:' \
|
||||||
'-scale:scale entry:' \
|
'--page=:label of first page:' \
|
||||||
'-scalebase:scale base:' \
|
'--media=:page size:(Letter Legal Statement Tabloid Ledger Folio Quarto 10x14 Executive A3 A4 A5 B4 B5)' \
|
||||||
'-ad:resource file:_files' \
|
'--orientation=:orientation:' \
|
||||||
'-style:resource file:_files' \
|
'--scale=:scale entry:' \
|
||||||
'*:file: _pspdf -z'
|
'--scalebase=:scale base:' \
|
||||||
|
'--ad=:resource file:_files' \
|
||||||
|
'--style=:resource file:_files' \
|
||||||
|
'*:file: _pspdf --z'
|
||||||
|
|
Loading…
Reference in a new issue