There are several commands that have esoteric options that I don't use often. For example, git has 'check-attr'. I use 'git checkout' very often, however, so I'd like, git ch to complete to git checkout or show a menu without check-attr in it. I can do this with zstyle ... ignored-patterns.
However, I'd still like to complete 'git check-attr' if nothing else matches (if I actually do want to run check-attr).
It seems that the 'hidden' zstyle is for me, but how can I specify a value (not just a tag) in the completion context? I.e. I'd like something like, zstyle ':completion:::git::' hidden-patterns 'check-attr'
Is that possible?
git chan alias ofgit checkout, which be good if you would just like to usegit checkoutwithout having to disambiguate withgit check-attr. – a3nm May 19 '11 at 0:46