zsh-workers
 help / color / mirror / code / Atom feed
From: "Nikolai Weibull" <now@bitwi.se>
To: "Zsh Workers" <zsh-workers@sunsite.dk>
Subject: rm(1) completion definition
Date: Tue, 30 Sep 2008 23:03:10 +0200	[thread overview]
Message-ID: <dbfc82860809301403v1ac0eb06ha80f01e96c02ab4f@mail.gmail.com> (raw)

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

Two notes:

1.  It seems that my trick to disable --force and --recursive on
non-GNU systems doesn't work.  Does the specifications have to match
exactly?  A prefix match like the one I was hoping for would be nice,
or is there some other way to achieve the same effect?

2.  I'm not sure if the zstyle thing is correct, but it's definitely
what you want it to do.  Is there a better way to achieve the same
effect?

Thanks (and enjoy)!

[-- Attachment #2: _rm --]
[-- Type: application/octet-stream, Size: 1308 bytes --]

#compdef rm

local -a opts args ignore
args=(
  '(-f --force)'{-f,--force}'[ignore nonexistent files, never prompt]'
  '(-I --interactive)-i[prompt before every removal]'
  '(-r -R --recursive)'{-r,-R,--recursive}'[remove directories and their contents recursively]'
  '*:file:_files'
)
if _pick_variant gnu=GNU unix --version; then
  opts+=(-S)
  args+=(
    '(-i --interactive)-I[prompt when removing many files]'
    '(-i -I)--interactive=-[prompt under given condition (defaulting to always)]::when:((once\:"prompt when removing many files"
                                                                                         always\:"prompt before every removal"))'
    '--one-file-system[stay within filesystems of files given as arguments]'
    '(                   --preserve-root)--no-preserve-root[do not treat / specially]'
    '(--no-preserve-root                )--preserve-root[do not remove / (default)]'
    '(-v --verbose)'{-v,--verbose}'[explain what is being done]'
    '(- *)--help[display help message and exit]'
    '(- *)--version[output version information and exit]'
  )
else
  args+=(
    '!--force'
    '!--recursive'
  )
fi

zstyle -s ':completion:$curcontext:files' ignore-line ignore || \
  zstyle ':completion:$curcontext:files' ignore-line yes

_arguments $opts \
  $args

             reply	other threads:[~2008-09-30 21:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-09-30 21:03 Nikolai Weibull [this message]
2008-10-01  9:38 ` Oliver Kiddle
2008-10-01 13:21   ` Nikolai Weibull
2008-10-08  9:29     ` Nikolai Weibull

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=dbfc82860809301403v1ac0eb06ha80f01e96c02ab4f@mail.gmail.com \
    --to=now@bitwi.se \
    --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).