Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: More-verbose tab-completion idiom?
On 2022-03-18 at 00:28 +0000, Daniel Shahaf wrote:
> Phil Pennock wrote on Thu, 17 Mar 2022 21:38 +00:00:
> > I just have to switch from "extra-verbose" to "verbose" simply because
> > of the difference in overhead now.
>
> As mentioned, 'verbose' is on by default, so you need s/zstyle -t/zstyle -T/.
*sigh* I missed the implication there, will fix now. Tested and
confirmed. Thanks.
Note that a grep over the zsh code-base for `zstyle .* verbose` shows
that things are inconsistent here. Almost 1/3 of checks are using '-t'.
% echo ${(D)PWD}
~/src/zsh/code
% ag 'zstyle -[tT] \S+\s+verbose' | grep -c 'zstyle -T'
22
% ag 'zstyle -[tT] \S+\s+verbose' | grep -c 'zstyle -t'
9
-Phil
Messages sorted by:
Reverse Date,
Date,
Thread,
Author