From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 861 invoked from network); 23 Feb 2000 15:54:06 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 23 Feb 2000 15:54:06 -0000 Received: (qmail 1741 invoked by alias); 23 Feb 2000 15:53:59 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9845 Received: (qmail 1732 invoked from network); 23 Feb 2000 15:53:59 -0000 Date: Wed, 23 Feb 2000 16:53:57 +0100 (MET) Message-Id: <200002231553.QAA14970@beta.informatik.hu-berlin.de> From: Sven Wischnowsky To: zsh-workers@sunsite.auc.dk In-reply-to: Sven Wischnowsky's message of Wed, 23 Feb 2000 16:48:33 +0100 (MET) Subject: Re: PATCH: Corrected style test in prediction I wrote: > - curcontext="${curcontext#*:}predict:" > + curcontext="predict:${curcontext#*:}" Getting a bit slow in the brain... Bye Sven diff -ru ../z.old/Functions/Zle/incremental-complete-word Functions/Zle/incremental-complete-word --- ../z.old/Functions/Zle/incremental-complete-word Wed Feb 23 14:44:05 2000 +++ Functions/Zle/incremental-complete-word Wed Feb 23 16:52:31 2000 @@ -21,7 +21,7 @@ local curcontext="${curcontext}" stop brk [[ -z "$curcontext" ]] && curcontext=::: - curcontext="${curcontext#*:}incremental:" + curcontext="incremental:${curcontext#*:}" zstyle -s ":completion:${curcontext}" prompt pmpt || pmpt='incremental (%c): %u%s %l' -- Sven Wischnowsky wischnow@informatik.hu-berlin.de