Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: [PATCH] Completion: Sort lz4 compression levels properly (+ a question)
- X-seq: zsh-workers 43784
- From: Oliver Kiddle <okiddle@xxxxxxxxxxx>
- To: dana <dana@xxxxxxx>, Zsh workers <zsh-workers@xxxxxxx>
- Subject: Re: [PATCH] Completion: Sort lz4 compression levels properly (+ a question)
- Date: Wed, 07 Nov 2018 11:35:59 +0100
- Authentication-results: amavisd4.gkg.net (amavisd-new); dkim=pass (2048-bit key) header.d=yahoo.co.uk
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.co.uk; s=s2048; t=1541586961; bh=OvXDd+8OC2jNdukWtg3mZ4+cbmnsWe0miCglmI4DEqM=; h=From:References:To:Subject:Date:From:Subject; b=m54iD3hlJXJZ0NroiojTzKoh7ICZcRNNld2KH7BYMurNwDwp7fCVyLl8w+uzaRC1gPZpKcIs9zyoMqwO9UX4HNpMXnurN5N5OY3ZMnPFge+A1BT3qWfJM7MLZMJxLo5bfrqibYcgNmb0M899ggnDLoKUo9BUZADEyUu6piWnc72M3kuSLFt8lsu4mx9O3YtHZbFXa4P/ZYZbQ7oxORLUQSeIKZI1H87XoPu/qquOg9pCZk4hslRAp4NoHGUjlv8kbHzoAwWC2csbSsdFUTuLoNQn8QiKuGq//SUBt73Hm8Nzv7kuzSoXEZrKC9x0cfuvUwq3NagbJWzqzeBcGMo82A==
- In-reply-to: <75B26F45-E6E6-44BB-80A4-7301CBE480FE@dana.is>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <75B26F45-E6E6-44BB-80A4-7301CBE480FE@dana.is>
On 3 Nov, dana wrote:
>
> Is there a better way to do this? Off the top of my head i came up with either
You can do:
_arguments '-b-:level: compadd "${(@)expl/#-J/-2V}" ${(on)levels}'
But what you have is perhaps better, especially as it's duplicated for
-b and -e.
I was thinking that you just needed to put - in where you wanted
_arguments to add the options but it's actually _sequence that does
that.
> If there's no generic way to do it, would it make sense to have some kind of
> spec modifier that tells action forms like `(item ...)` that -V should be used,
> or, if that's too weird, a helper function (_presorted maybe) that just wraps
I'm not especially enthused about adding more special syntax to
_arguments.
The compadd interface perhaps isn't ideal. If -V was a standalone option
like -1 and -2, intended to be used in combination with -J (to specify
the group name), then it would be easier to modify the sort order.
There's also the -o option which (per-match rather than per-group) says
that the display string should be used when comparing matches for the
purpose of sorting. As far as I can tell, -o has never been used.
Sorting by the description part of the display string would be useful.
Can we improve it without breaking backward compatibility. -o with an
argument could allow for more sorting options, e.g. -o numeric to do
numeric sorting. Do we need to be concerned that someone somewhere may
actually be using -o?
The help descriptions in compadd completion had things the wrong way
around for -o which this fixes. Also, the help for -V is perhaps
somewhat confusing. "unsorted" was used to mean "will not be sorted" but
is often used when you have already pre-sorted the matches.
Oliver
diff --git a/Completion/Zsh/Command/_compadd b/Completion/Zsh/Command/_compadd
index a7036d027..e709e400e 100644
--- a/Completion/Zsh/Command/_compadd
+++ b/Completion/Zsh/Command/_compadd
@@ -14,9 +14,9 @@ _arguments -C -s -S -A "-*" \
'(-a)-k[matches are keys of specified associative arrays]' \
'-d+[specify display strings]:array:_parameters -g "*array*"' \
'-l[list display strings one per line, not in columns]' \
- '-o[order matches by display string not by match string]' \
- '(-1 -E)-J+[specify match group]:group' \
- '-V+[specify unsorted match group]:group' \
+ '-o[order matches by match string not by display string]' \
+ '(-1 -E)-J+[specify match group which will be sorted]:group' \
+ '-V+[specify pre-ordered match group]:group' \
'(-J -E)-1[remove only consecutive duplicates from group]' \
'-2[preserve all duplicates]' \
'(-x)-X[specify explanation]:explanation' \
Messages sorted by:
Reverse Date,
Date,
Thread,
Author