diff options
| author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-17 08:04:42 +0000 |
|---|---|---|
| committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-17 08:04:42 +0000 |
| commit | cd45aa331dc206b1b40c5be5e222d46148bf42ac (patch) | |
| tree | ed0ecfb9fae0dcfee5c9adefeb4ddab848a032d3 /Completion/Core/_description | |
| parent | fix for partial word completion with empty parts and common suffix (10774) (diff) | |
| download | zsh-cd45aa331dc206b1b40c5be5e222d46148bf42ac.tar zsh-cd45aa331dc206b1b40c5be5e222d46148bf42ac.tar.gz zsh-cd45aa331dc206b1b40c5be5e222d46148bf42ac.tar.bz2 zsh-cd45aa331dc206b1b40c5be5e222d46148bf42ac.tar.lz zsh-cd45aa331dc206b1b40c5be5e222d46148bf42ac.tar.xz zsh-cd45aa331dc206b1b40c5be5e222d46148bf42ac.tar.zst zsh-cd45aa331dc206b1b40c5be5e222d46148bf42ac.zip | |
make _tags use C-code for braces in tag-order values; and misc. stuff (10775)
Diffstat (limited to 'Completion/Core/_description')
| -rw-r--r-- | Completion/Core/_description | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Core/_description b/Completion/Core/_description index 7db47228b..6ee1026bd 100644 --- a/Completion/Core/_description +++ b/Completion/Core/_description @@ -18,8 +18,8 @@ name="$2" zstyle -s ":completion:${curcontext}:$1" format format || zstyle -s ":completion:${curcontext}:descriptions" format format -zstyle -s ":completion:${curcontext}:$1" hidden hidden -if [[ "$hidden" = (all|yes|true|1|on) ]]; then +if zstyle -s ":completion:${curcontext}:$1" hidden hidden && + [[ "$hidden" = (all|yes|true|1|on) ]]; then [[ "$hidden" = all ]] && format='' opts=(-n) fi |
