Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Questions about completion matchers
- X-seq: zsh-users 27127
- From: Marlon Richert <marlon.richert@xxxxxxxxx>
- To: Zsh Users <zsh-users@xxxxxxx>
- Subject: Questions about completion matchers
- Date: Tue, 21 Sep 2021 12:23:04 +0300
- Archived-at: <https://zsh.org/users/27127>
- List-id: <zsh-users.zsh.org>
How can I make a matcher that completes the right-most part (and only
the right-most part) of each subword? That is, given a target
completion 'abcDefGhi', how do I make a match specification that
completes inputs
* a
* aD
* abD
* aDG
* aDe
* aDeG
to this target, but not inputs
* D
* aG
* acD
* DG
* aDf
* aDeGi
?
Additionally, the following are unclear to me from the manual:
* What is the exact difference between l:lanchor||ranchor=tpat and
r:lanchor||ranchor=tpat ?
* Why do the examples in the manual add r:|=* to the end of each
matcher? This appears to make no difference at all.
* It appears that the order of "match descriptions" in a matchers
matters, but it is unclear to me in what way and it isn't mentioned in
the manual. For example, the pairs of matchers below differ only in
the order of their match descriptions, yet each produces a different
behavior. How are the match descriptions inside a matcher evaluated
and what causes the difference between these?
* 'r:|[[:punct:]]=** l:?|=[[:punct:]]' completes 'cd a/b' to 'cd
a/bc', but 'l:?|=[[:punct:]] r:|[[:punct:]]=**' does not.
* Given two target completions 'a-b' and 'a_b', both 'l:?|=[-_]
m:{-}={_}' and 'm:{-}={_} l:?|=[-_]' will insert 'a-b' as the
unambiguous substring on the first try, but on the second try, only
the former will then list both completions, whereas the latter will
complete only 'a-b'.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author