zsh-workers
 help / color / mirror / code / Atom feed
From: "Andrej Borsenkow" <borsenkow.msk@sni.de>
To: "ZSH workers mailing list" <zsh-workers@sunsite.auc.dk>
Subject: Recursive completion (was: RE: Reading completion manual)
Date: Wed, 3 Mar 1999 09:39:13 +0300	[thread overview]
Message-ID: <000201be6540$8d5eb8a0$21c9ca95@mowp.siemens.ru> (raw)

May be, this solves the original problem?

> 
> As most of us, I don't like the idea of conditions with side 
> effects. But I don't like the Sven's suggestion of replacing 
> conditions with shell code either (at least, with *THIS* code :-) 
> Even more, as it does not solve the original problem - you still 
> have to save parameters and restore them after that. I'd suggest 
> something in between - conditions set special parameters 
> (elements of hash?) that can be used to extract matched 
> substrings/words. That is almost the same, as Sven's suggestion, 
> but probably more user-friendly :) something like
> 
> if [[ -between string1 string2 ]]; then
>    local -a nwords
>    nwords=(words[$FIRST,$LAST])
>     ...
> 
> 

if [[ -between string1 string2 ]]; then
    compalso  --from=first --to=last

compalso() {
   for i in $*
     case $i in
        --from=* )
           from=${i#--from=}
        ;;
  ....
   words=($words[$from,$to])
 ...
}

I bet, this can be written as one line :-)

cheers

/andrej


                 reply	other threads:[~1999-03-03  6:40 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='000201be6540$8d5eb8a0$21c9ca95@mowp.siemens.ru' \
    --to=borsenkow.msk@sni.de \
    --cc=zsh-workers@sunsite.auc.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).