From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24106 invoked from network); 15 Oct 1999 13:12:59 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 15 Oct 1999 13:12:59 -0000 Received: (qmail 751 invoked by alias); 15 Oct 1999 13:12:49 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8280 Received: (qmail 742 invoked from network); 15 Oct 1999 13:12:49 -0000 X-Envelope-Sender-Is: Andrej.Borsenkow@mow.siemens.ru (at relayer david.siemens.de) From: "Andrej Borsenkow" To: "ZSH workers mailing list" Subject: Menuselect question(s) and problem(s) Date: Fri, 15 Oct 1999 17:12:39 +0400 Message-ID: <000d01bf170e$f4ecbdc0$21c9ca95@mow.siemens.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal 1. Is it possible to force menuselect (special key binding?) in case one match is exact? I mean, currently if I have "foo" and "foobar" I get first a list of both. Unfortunately, the next TAB starts from the scratch ... thus matching "foo" and skipping any menu completion alltogether. (BTW I really think that it were better to reuse old matches ... is it still not possible?) 2. Something strange still happens (with all current patches): bor@itsrm2:~%> l /t/s/z/f/_ bor@itsrm2:~%> l /tools/share/zsh/functions/_ functions/ functions.old/ (here we have exactly the case of the first question :-) press TAB once more: bor@itsrm2:~%> l /tools/share/zsh/functions/_a2ps functions/ functions.old/ Ooops. It starts menu completion - but I have SELECTMIN=0 and expect menuselection to be started. bor@itsrm2:~%> compconf -L compconf completer='_oldlist:_complete:_match' compconf correct_accept='2n' compconf correct_prompt='correct to:' compconf dumpfile='/home/bor/.zcompdump' compconf match_insert='unambig' compconf match_original='yes' compconf oldlist_list='_match' compconf path_cursor='yes' bor@itsrm2:~%> set | grep SELECT SELECTMIN=0 /andrej