zsh-workers
 help / color / mirror / code / Atom feed
* _oldlist and _complete_help oddities
@ 2000-04-11 10:33 Andrej Borsenkow
  0 siblings, 0 replies; 2+ messages in thread
From: Andrej Borsenkow @ 2000-04-11 10:33 UTC (permalink / raw)
  To: ZSH workers mailing list

bor@itsrm2% ls <TAB>
bor@itsrm2% ls
Completing file
CVS/            ChangeLog       ChangeLog.3.0   Completion/     Config/
Doc/            Etc/            Functions/      INSTALL         LICENCE
META-FAQ        Makefile        Makefile.in     Misc/           README
Src/            StartupFiles/   Test/           Util/
acconfig.h
aclocal.m4      aczsh.m4        config.cache    config.guess*   config.h
config.h.in     config.log      config.status*  config.sub*
configure*
configure.in    install-sh*     mkinstalldirs*  stamp-h
stamp-h.in
bor@itsrm2% ls ^Xh
Completing file
CVS/            ChangeLog       ChangeLog.3.0   Completion/     Config/
Doc/            Etc/            Functions/      INSTALL         LICENCE
META-FAQ        Makefile        Makefile.in     Misc/           README
Src/            StartupFiles/   Test/           Util/
acconfig.h
aclocal.m4      aczsh.m4        config.cache    config.guess*   config.h
config.h.in     config.log      config.status*  config.sub*
configure*
configure.in    install-sh*     mkinstalldirs*  stamp-h
stamp-h.in

List is not redrawn.

bor@itsrm2% zstyle -L
zstyle ':completion:*' completer _oldlist _complete _match
zstyle :completion::approximate: max-errors 3
zstyle ':completion:*' menu 'select=0'
zstyle ':completion:*::::default' list-colors ''
zstyle ':completion:*:match:*' original yes
zstyle ':completion:*:match:*' insert-unambiguous yes
zstyle ':completion:*:paths' ambiguous yes
zstyle ':completion:*:oldlist' list _match
zstyle ':completion:*' list-rows-first yes
zstyle ':completion:*:(directories|(globbed-|all-|)files)' matcher
'r:|[.-]=**'
zstyle ':completion:*' group-name ''
zstyle ':completion:*:descriptions' format 'Completing %d'

-andrej

Have a nice DOS!
B >>


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

* Re: _oldlist and _complete_help oddities
@ 2000-04-11 10:40 Sven Wischnowsky
  0 siblings, 0 replies; 2+ messages in thread
From: Sven Wischnowsky @ 2000-04-11 10:40 UTC (permalink / raw)
  To: zsh-workers


Andrej Borsenkow wrote:

> bor@itsrm2% ls <TAB>
> bor@itsrm2% ls
> ...
> bor@itsrm2% ls ^Xh
> Completing file
> CVS/            ChangeLog       ChangeLog.3.0   Completion/     Config/
> ...
> 
> List is not redrawn.

Oops. _oldlist should not only ignore the list from _complete_help, it 
should also avoid to re-use an old list if _complete_help is called.

And now the tests there really make me think that there has to be a
cleaner way...

Bye
 Sven

Index: Completion/Core/_oldlist
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Core/_oldlist,v
retrieving revision 1.3
diff -u -r1.3 _oldlist
--- Completion/Core/_oldlist	2000/04/11 09:40:13	1.3
+++ Completion/Core/_oldlist	2000/04/11 10:39:22
@@ -14,7 +14,7 @@
 # completer named by the oldlist_list key.
 
 if [[ -n $compstate[old_list] && $list != never &&
-      $LASTWIDGET != _complete_help ]]; then
+      $LASTWIDGET != _complete_help && $WIDGET != _complete_help ]]; then
   if [[ $WIDGET = *list* && ( $list = always || $list != shown ) ]]; then
     compstate[old_list]=keep
     return 0
@@ -35,7 +35,7 @@
 # existing list (even if it was generated by another widget).
 
 if [[ -z $compstate[old_insert] && -n $compstate[old_list] &&
-      $LASTWIDGET != _complete_help ]]; then
+      $LASTWIDGET != _complete_help && $WIDGET != _complete_help ]]; then
   compstate[old_list]=keep
   return 0
 elif [[ $WIDGET = *complete(|-prefix|-word) ]] &&

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


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

end of thread, other threads:[~2000-04-11 10:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-04-11 10:33 _oldlist and _complete_help oddities Andrej Borsenkow
2000-04-11 10:40 Sven Wischnowsky

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