zsh-workers
 help / color / mirror / code / Atom feed
From: "Haakon Riiser" <haakon.riiser@fys.uio.no>
To: zsh-workers@sunsite.dk
Subject: Acrobat Reader completion plugin
Date: Fri, 25 Apr 2003 15:57:45 +0200	[thread overview]
Message-ID: <20030425135745.GA1486@s.chello.no> (raw)

[-- Attachment #1: Type: text/plain, Size: 125 bytes --]

I've written a completion plugin for Acrobat Reader 5.0.x.
Feel free to include it with zsh if you like it. :-)

-- 
 Haakon

[-- Attachment #2: _acroread --]
[-- Type: text/plain, Size: 1439 bytes --]

#compdef acroread
# $Date: 2003/04/22 10:31:47 $

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

                 reply	other threads:[~2003-04-25 13:57 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20030425135745.GA1486@s.chello.no \
    --to=haakon.riiser@fys.uio.no \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).