zsh-workers
 help / color / mirror / code / Atom feed
* Manual entry for compctl -M
@ 1999-02-02 14:27 Peter Stephenson
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Stephenson @ 1999-02-02 14:27 UTC (permalink / raw)
  To: Zsh hackers list

I'm just trying to tidy up the zshcomptl manual page a bit, since it's
changed quite a lot (now I'll have to try and work the latest patch
in).  The difficult bit is -M.  In particular I don't understand what
is going on the partial completion example at all, nor can I get it to
work.  The incantation given is:

compctl -M 'r:|[.,_-]=* r:|=*'

First, according to the description above this, it means that the
`line pattern' is blank and the anchor is one of the set in [...].  Is
that right?  Wouldn't I need to ignore what's on the left?  How does
that help me complete, say comp.sources.u<TAB> as a partial word?  I
tried something like

% compctl -M 'r:[.,_-]|=* r:|=*' -k '(comp sources unix)' foo
% foo c.s.u<TAB>

but nothing happened.  I can get the c on its own to work, as usual,
but nothing else.

-- 
Peter Stephenson <pws@ibmth.df.unipi.it>       Tel: +39 050 844536
WWW:  http://www.ifh.de/~pws/
Dipartimento di Fisica, Via Buonarroti 2, 56127 Pisa, Italy


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re:  Manual entry for compctl -M
@ 1999-02-02 14:54 Sven Wischnowsky
  0 siblings, 0 replies; 2+ messages in thread
From: Sven Wischnowsky @ 1999-02-02 14:54 UTC (permalink / raw)
  To: zsh-workers


Peter Stephenson wrote:

> I'm just trying to tidy up the zshcomptl manual page a bit, since it's
> changed quite a lot (now I'll have to try and work the latest patch
> in).

Oops, sorry.

> The difficult bit is -M.  In particular I don't understand what
> is going on the partial completion example at all, nor can I get it to
> work.  The incantation given is:
> 
> compctl -M 'r:|[.,_-]=* r:|=*'
> 
> First, according to the description above this, it means that the
> `line pattern' is blank and the anchor is one of the set in [...].  Is
> that right?  Wouldn't I need to ignore what's on the left?

That's exactly what happens. The (first) pattern means: an empty
string to the left of (the anchor) `[.,_-]' matches any number of
characters. I.e.: any character on the left of the anchor `will be
ignored'.

> How does
> that help me complete, say comp.sources.u<TAB> as a partial word?  I
> tried something like
> 
> % compctl -M 'r:[.,_-]|=* r:|=*' -k '(comp sources unix)' foo
> % foo c.s.u<TAB>
> 
> but nothing happened.  I can get the c on its own to work, as usual,
> but nothing else.

The words have to contain the anchors:

  compctl -M 'r:|[.,_-]=* r:|=*' \
          -k '(comp.sources.unix comp.sources.misc)' foo

or just

  compctl -M 'r:|[.,_-]=* r:|=*'

as a global matcher and you can get `Zle/z_tr.c<TAB>' to complete to
`Zle/zle_tricky.c'.

(Note also that I put the anchor in its place again, after the `|'.)

Bye
 Sven


--
Sven Wischnowsky                         wischnow@informatik.hu-berlin.de


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1999-02-02 14:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-02-02 14:27 Manual entry for compctl -M Peter Stephenson
1999-02-02 14:54 Sven Wischnowsky

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).