Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: How to disable certain completion tags?
Martin Vaeth wrote:
> Thanks for the reply. But this is not exactly what I intended:
>
> zstyle ':completion:*:*:dummy:*' tag-order -
>
> switches off completion completely for "dummy" (in particular, also
You either need to narrow down the context:
zstyle ':completion:*:*:dummy:option--foo-1:*' tag-order -
or list the tags you don't want:
zstyle ':completion:*:*:dummy:*' tag-order 'options' -
-or-
zstyle ':completion:*:*:dummy:*' tag-order '!foo' -
Oliver
Messages sorted by:
Reverse Date,
Date,
Thread,
Author