zsh-workers
 help / color / mirror / code / Atom feed
* problem with _sysrc in zsh 5.3
@ 2017-02-19  4:35 Eric Cook
  2017-02-20 11:32 ` Oliver Kiddle
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Cook @ 2017-02-19  4:35 UTC (permalink / raw)
  To: zsh-workers

When completing arguments to sysrc, the following errors appears in zsh 5.3

# sysrc
_describe:21: bad option: -C
(eval):1: bad substitution
(eval):1: not an identifier: [_-]=* r:|=*[@]

This wasn't an problem with 5.2 from what i remember and when i move _value's
-w option to appear after -C, the error doesn't appear.

I also have a few personal completers that also calls _values -w -C ...
but luckly nothing else in Completion/* does it.

What change caused this?


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: problem with _sysrc in zsh 5.3
  2017-02-19  4:35 problem with _sysrc in zsh 5.3 Eric Cook
@ 2017-02-20 11:32 ` Oliver Kiddle
  0 siblings, 0 replies; 2+ messages in thread
From: Oliver Kiddle @ 2017-02-20 11:32 UTC (permalink / raw)
  To: zsh-workers

Eric Cook wrote:
>
> # sysrc
> _describe:21: bad option: -C
> (eval):1: bad substitution
> (eval):1: not an identifier: [_-]=* r:|=*[@]
>
> This wasn't an problem with 5.2 from what i remember and when i move _value's
> -w option to appear after -C, the error doesn't appear.
>
> I also have a few personal completers that also calls _values -w -C ...
> but luckly nothing else in Completion/* does it.
>
> What change caused this?

38641. It didn't allow for _values options coming before -C or -O. Sorry
about that.

The use of -C in _sysrc seems fairly pointless given that it isn't used
with any states. It probably could attempt to complete some values.
Maybe just YES/NO for any configuration variable that ends in _enable.

Oliver

diff --git a/Completion/BSD/Command/_sysrc b/Completion/BSD/Command/_sysrc
index 651c18b89..246d73bd3 100644
--- a/Completion/BSD/Command/_sysrc
+++ b/Completion/BSD/Command/_sysrc
@@ -76,9 +76,9 @@ _sysrc() {
 
       if (( $#rc_conf_vars )); then
         if [[ $opt == N ]]; then
-          _values -w -C variable ${^rc_conf_vars%%\[*}'::value' && ret=0
+          _values -w variable ${^rc_conf_vars%%\[*}'::value' && ret=0
         else
-          _values -w -C variable ${^rc_conf_vars}'::value' && ret=0
+          _values -w variable ${^rc_conf_vars}'::value' && ret=0
         fi
       fi
     fi
diff --git a/Completion/Base/Utility/_values b/Completion/Base/Utility/_values
index c510b4cc0..6e38e00f4 100644
--- a/Completion/Base/Utility/_values
+++ b/Completion/Base/Utility/_values
@@ -1,13 +1,14 @@
 #autoload
 
-local subopts opt usecc garbage
+local subopts opt usecc garbage keep
 
 subopts=()
-zparseopts -D -a garbage C=usecc O:=subopts M: J: V: 1 2 n F: X:
+zparseopts -D -a garbage s+:=keep S+:=keep w+=keep C=usecc O:=subopts \
+    M: J: V: 1 2 n F: X:
 
 (( $#subopts )) && subopts=( "${(@P)subopts[2]}" )
 
-if compvalues -i "$@"; then
+if compvalues -i "$keep[@]" "$@"; then
 
   local noargs args opts descr action expl sep argsep subc test='*'
   local oldcontext="$curcontext"


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-02-20 11:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-19  4:35 problem with _sysrc in zsh 5.3 Eric Cook
2017-02-20 11:32 ` Oliver Kiddle

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).