diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-02-15 09:07:09 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-02-15 09:07:09 +0000 |
commit | e6cc1ece7fed93fd31ca4e7f7726de034ede887c (patch) | |
tree | 93087d3edf5eb27836ba9bbdfb687b416fb7c629 /Completion/User/_lp | |
parent | bf990125d18effbf111fd6a30ff5bf90c4c263ae (diff) | |
download | zsh-e6cc1ece7fed93fd31ca4e7f7726de034ede887c.tar.gz zsh-e6cc1ece7fed93fd31ca4e7f7726de034ede887c.tar.xz zsh-e6cc1ece7fed93fd31ca4e7f7726de034ede887c.zip |
zsh-workers/9731
Diffstat (limited to 'Completion/User/_lp')
-rw-r--r-- | Completion/User/_lp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/User/_lp b/Completion/User/_lp index 7cd770f63..d1c110b1c 100644 --- a/Completion/User/_lp +++ b/Completion/User/_lp @@ -37,7 +37,7 @@ fi if compset -P -P || [[ "$words[CURRENT-1]" = -P ]]; then if _wanted printers expl printer; then - if zstyle -t ":completion:${curcontext}:printers" verbose; then + if zstyle -T ":completion:${curcontext}:printers" verbose; then zformat -a list ' -- ' "$_lp_cache[@]" disp=(-ld list) else @@ -47,7 +47,7 @@ if compset -P -P || [[ "$words[CURRENT-1]" = -P ]]; then (( $+_lp_alias_cache )) || return 1 - if zstyle -t ":completion:${curcontext}:printers" verbose; then + if zstyle -T ":completion:${curcontext}:printers" verbose; then zformat -a list ' -- ' "$_lp_alias_cache[@]" disp=(-ld list) else @@ -73,7 +73,7 @@ else if _requested users expl user; then strs=( "${(@)${(@)list##[^ ]##[ ]##[^ ]##[ ]##}%%[ ]*}" ) if [[ -z "$shown" ]] && - zstyle -t ":completion:${curcontext}:users" verbose; then + zstyle -T ":completion:${curcontext}:users" verbose; then disp=(-ld list) shown=yes else @@ -84,7 +84,7 @@ else if _requested jobs expl job; then strs=( "${(@)${(@)list##[^ ]##[ ]##[^ ]##[ ]##[^ ]##[ ]##}%%[ ]*}" ) if [[ -z "$shown" ]] && - zstyle -t ":completion:${curcontext}:jobs" verbose; then + zstyle -T ":completion:${curcontext}:jobs" verbose; then disp=(-ld list) shown=yes else |