From 6925e2b298ea02c1b8fb50f116167761cd0bd153 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 25 May 2015 16:53:04 +0200 Subject: 35286: fix zstyle lookups with _baz and _tla Add trailing colons to context being used with `zstyle -s`. --- Completion/Unix/Command/_baz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Completion/Unix/Command/_baz') diff --git a/Completion/Unix/Command/_baz b/Completion/Unix/Command/_baz index 132c6e31d..6787f41e2 100644 --- a/Completion/Unix/Command/_baz +++ b/Completion/Unix/Command/_baz @@ -6,13 +6,13 @@ local baz_version local hide_short # ask the user which version of baz this is -if ! zstyle -s ":completion:${curcontext}" baz-version baz_version; then +if ! zstyle -s ":completion:${curcontext}:" baz-version baz_version; then # ask baz instead baz_version="${${$($BAZ --version)#baz Bazaar version }%% \(thelove@canonical.com*}" fi # test whether to hide short options from completion -if zstyle -s ":completion:${curcontext}" hide-shortopts hide_short; then +if zstyle -s ":completion:${curcontext}:" hide-shortopts hide_short; then case $hide_short in true|yes|on|1) hide_short='!' ;; *) hide_short='' ;; -- cgit 1.4.1