zsh-workers
 help / color / mirror / code / Atom feed
* Re: PATCH: Re: Patches committed
@ 2000-04-27  7:07 Sven Wischnowsky
  0 siblings, 0 replies; 5+ messages in thread
From: Sven Wischnowsky @ 2000-04-27  7:07 UTC (permalink / raw)
  To: zsh-workers


Bart Schaefer wrote:

> On Apr 26,  3:12pm, Sven Wischnowsky wrote:
> } 
> } Adam Spiers wrote:
> } 
> } > % echo <M-/>
> } > _tags:58: no matches found: (|*-)argument-* (|*-)option-* values
> } 
> } I guess that was your weird option setting, err... that was due to
> } missing standard option initialisation in _h_c_w. Remember
> } _complete_help?
> 
> Did anyone see my remark about this in 10897?

Yes, but in this case... we never unsetopt localoptions.

Bye
 Sven


--
Sven Wischnowsky                         wischnow@informatik.hu-berlin.de


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

* Re: PATCH: Re: Patches committed
@ 2000-04-27  7:09 Sven Wischnowsky
  0 siblings, 0 replies; 5+ messages in thread
From: Sven Wischnowsky @ 2000-04-27  7:09 UTC (permalink / raw)
  To: zsh-workers


Adam Spiers wrote:

> Sven Wischnowsky (wischnow@informatik.hu-berlin.de) wrote:
> > I guess that was your weird option setting, err... 
> 
> :-)  Which of my option choices are unusual, out of curiosity?

It was globsubsts and shwordsplit again, especially the former.

I didn't want to say that they are unusual. Really ;-)

Bye
 Sven


--
Sven Wischnowsky                         wischnow@informatik.hu-berlin.de


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

* Re: PATCH: Re: Patches committed
  2000-04-26 13:12 Sven Wischnowsky
  2000-04-26 16:02 ` Bart Schaefer
@ 2000-04-26 16:40 ` Adam Spiers
  1 sibling, 0 replies; 5+ messages in thread
From: Adam Spiers @ 2000-04-26 16:40 UTC (permalink / raw)
  To: zsh-workers

Sven Wischnowsky (wischnow@informatik.hu-berlin.de) wrote:
> I guess that was your weird option setting, err... 

:-)  Which of my option choices are unusual, out of curiosity?

> Does this help?

Yes, thanks.


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

* Re: PATCH: Re: Patches committed
  2000-04-26 13:12 Sven Wischnowsky
@ 2000-04-26 16:02 ` Bart Schaefer
  2000-04-26 16:40 ` Adam Spiers
  1 sibling, 0 replies; 5+ messages in thread
From: Bart Schaefer @ 2000-04-26 16:02 UTC (permalink / raw)
  To: zsh-workers

On Apr 26,  3:12pm, Sven Wischnowsky wrote:
} 
} Adam Spiers wrote:
} 
} > % echo <M-/>
} > _tags:58: no matches found: (|*-)argument-* (|*-)option-* values
} 
} I guess that was your weird option setting, err... that was due to
} missing standard option initialisation in _h_c_w. Remember
} _complete_help?

Did anyone see my remark about this in 10897?

-- 
Bart Schaefer                                 Brass Lantern Enterprises
http://www.well.com/user/barts              http://www.brasslantern.com


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

* PATCH: Re: Patches committed
@ 2000-04-26 13:12 Sven Wischnowsky
  2000-04-26 16:02 ` Bart Schaefer
  2000-04-26 16:40 ` Adam Spiers
  0 siblings, 2 replies; 5+ messages in thread
From: Sven Wischnowsky @ 2000-04-26 13:12 UTC (permalink / raw)
  To: zsh-workers


Adam Spiers wrote:

> Sven Wischnowsky (wischnow@informatik.hu-berlin.de) wrote:
> > Just to let you know, I just committed Tanaka's 10890 and 10885 and
> > Adam's 10892.
> 
> Cool, thanks.
> 
> > I haven't commited Felix' 10893 or 10894:
> 
> I don't know whether this is related, but h-c-w seems to have broken:
> 
> % echo <M-/>
> _tags:58: no matches found: (|*-)argument-* (|*-)option-* values

I guess that was your weird option setting, err... that was due to
missing standard option initialisation in _h_c_w. Remember
_complete_help?

Does this help?

Bye
 Sven

Index: Completion/Commands/_bash_completions
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Commands/_bash_completions,v
retrieving revision 1.1.1.2
diff -u -r1.1.1.2 _bash_completions
--- Completion/Commands/_bash_completions	1999/10/26 15:36:11	1.1.1.2
+++ Completion/Commands/_bash_completions	2000/04/26 13:10:36
@@ -25,6 +25,9 @@
 # that will not have been overridden, so you should add '~' to the
 # list of keys at the top of the for-loop.
 
+setopt localoptions nullglob rcexpandparam extendedglob
+unsetopt markdirs globsubst shwordsplit nounset ksharrays
+
 local key=$KEYS[-1]
 
 case $key in
@@ -34,7 +37,7 @@
        ;;
   '@') _main_complete _hosts
        ;;
-  '/') _files
+  '/') _main_complete _files
        ;;
   '~') _main_complete _users
        ;;
Index: Completion/Commands/_history_complete_word
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Commands/_history_complete_word,v
retrieving revision 1.2
diff -u -r1.2 _history_complete_word
--- Completion/Commands/_history_complete_word	2000/04/01 20:43:43	1.2
+++ Completion/Commands/_history_complete_word	2000/04/26 13:10:37
@@ -17,6 +17,9 @@
 #
 
 _history_complete_word () {
+  setopt localoptions nullglob rcexpandparam extendedglob
+  unsetopt markdirs globsubst shwordsplit nounset ksharrays
+
   local expl direction stop
 
   if [[ $WIDGET = *newer ]]; then

--
Sven Wischnowsky                         wischnow@informatik.hu-berlin.de


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

end of thread, other threads:[~2000-04-27  7:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-04-27  7:07 PATCH: Re: Patches committed Sven Wischnowsky
  -- strict thread matches above, loose matches on Subject: below --
2000-04-27  7:09 Sven Wischnowsky
2000-04-26 13:12 Sven Wischnowsky
2000-04-26 16:02 ` Bart Schaefer
2000-04-26 16:40 ` Adam Spiers

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).