Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: How to disable certain completion tags?
Oliver Kiddle <okiddle@xxxxxxxxxxx> wrote:
>
> 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' -
Thanks a lot! These two do the trick!
> -or-
> zstyle ':completion:*:*:dummy:*' tag-order '!foo' -
This does not, but if a dummy argument is added, the following works:
zstyle ':completion:*:*:dummy:*' tag-order bar - '!foo'
There still seems no possibility to disable two tags without listing
all the rest explicitly, but at least wildcards can be used for that
listing.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author