diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-08-18 19:53:39 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-08-18 19:53:39 +0200 |
commit | 59bb421290c203d984cb0b42d33462239cb6d6bd (patch) | |
tree | 6d225a9fb3c8eaf6f98c52c1c334d70b035eb670 | |
parent | 16253bc2806d75db4454ec24443c87d47d15c24f (diff) |
etc/completion: Also show warnings
-rw-r--r-- | etc/completion | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/etc/completion b/etc/completion index c430f70..8883648 100644 --- a/etc/completion +++ b/etc/completion @@ -12,9 +12,14 @@ zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z} m:_=\\\ ' '' # Be verbose zstyle ':completion:*' verbose true -zstyle ':completion:*:descriptions' format "${ps_info}·${ps_reset} %d ${ps_info}·${ps_reset}" -zstyle ':completion:*:messages' format "${ps_info}·${ps_reset} %d ${ps_info}·${ps_reset}" -zstyle ':completion:*:corrections' format "${ps_info}·${ps_reset} %d ${ps_info}·${ps_reset}" +zstyle ':completion:*:descriptions' format \ + "${ps_info}·${ps_reset} %d ${ps_info}·${ps_reset}" +zstyle ':completion:*:messages' format \ + "${ps_info}·${ps_reset} %d ${ps_info}·${ps_reset}" +zstyle ':completion:*:corrections' format \ + "${ps_info}·${ps_reset} %d ${ps_info}·${ps_reset}" +zstyle ':completion:*:warnings' format \ + "${ps_red}no match:${ps_reset} %d" zstyle ':completion:*' group-name '' |