Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm
Precedence: bulk
X-No-Archive: yes
List-Id: Zsh Workers List <zsh-workers.zsh.org>
List-Post: <mailto:zsh-workers@zsh.org>
List-Help: <mailto:zsh-workers-help@zsh.org>
X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au
X-Spam-Level: 
X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID
	autolearn=ham autolearn_force=no version=3.4.1
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=brasslantern-com.20150623.gappssmtp.com; s=20150623;
        h=from:message-id:date:in-reply-to:comments:references:to:subject
         :mime-version;
        bh=70LtG4fkMuMagVQp+cmHkLf8SUVj//kzDKWxS2UFByU=;
        b=jdWbNmlb3VRWmuZ4uHH1aEs3ZJ7i2SHkoONG1jV7crCs14eBmS9PJhmq04ZWE7Oi47
         tL01vNUSUonS4ToFVTDJzBfBkrMJ26sqzYsg0sQMFFs8ZjP6sb627szGKDFLo6o1Bral
         n1zg9zCryvLaVRasYp7ojj62oao6GW51FR6RFsaKndfr+gMvEDnHtVDYq6rVqnpWW8Di
         p38BskwfHM8Qaqxp8qkX9BqW7B8IuzzDitk9m4K3JKqMzRsrLV7HmbSBhl+JTFcJIHUV
         BsuCewuBvoM1K031G7CD8eBA6Ao+VfFQLuB/vFWi9IA64IqbHOd5bkT9yt0YA4NSef2K
         /z1Q==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20130820;
        h=x-gm-message-state:from:message-id:date:in-reply-to:comments
         :references:to:subject:mime-version;
        bh=70LtG4fkMuMagVQp+cmHkLf8SUVj//kzDKWxS2UFByU=;
        b=SwJ5wvMy3eAXGGaZx1TKAkiur8KFWmqv8MMdOfyzrd9s2T+SbB0nB+dteQXJ60UNJP
         dkMvD7sRHEi8O/oQzH7LIQBFlyMUu4lKLa9LCpDYXB3y7a9M6DmFnWn0C2DAErZcaVOP
         QmtbC8+9hVtR0WTIy5BoUQco8nKILdnBAmLqyGS9GDkHqPIHmin51abmPcnD3OTSg9WM
         sAy0jGcK03Uu0/NxS/0CxX0C5IwBwhQSRsQ+5GGDJ3VhgwFF7xAvq7nDu0i8au6LritQ
         fLFZdxvkfmpwnqXinDbVj9LgosUzwr3e9j+RihIFzv5qhdRXbK5OyL+AHKgjyRBE/CXH
         79oA==
X-Gm-Message-State: ALyK8tIKUjwPFYRba/LBpxvkHhc6vjzv613V93wjW+qyw5VH+tQexs76GgzljmaHkG7phw==
X-Received: by 10.66.248.65 with SMTP id yk1mr16282844pac.56.1466352216914;
        Sun, 19 Jun 2016 09:03:36 -0700 (PDT)
From: Bart Schaefer <schaefer@brasslantern.com>
Message-Id: <160619090406.ZM1141@torch.brasslantern.com>
Date: Sun, 19 Jun 2016 09:04:06 -0700
In-Reply-To: <20306.1466207421@thecus.kiddle.eu>
Comments: In reply to Oliver Kiddle <okiddle@yahoo.co.uk>
        "Re: Regression: broken completion on modification time" (Jun 18,  1:50am)
References: <87oa76172f.fsf@secretsauce.net> 
	<160612174712.ZM10957@torch.brasslantern.com> 
	<3670.1465855245@thecus.kiddle.eu> 
	<160614091402.ZM17103@torch.brasslantern.com> 
	<9937.1466008377@thecus.kiddle.eu> 
	<20160615232437.GA28886@tarsus.local2> 
	<17354.1466180383@thecus.kiddle.eu> 
	<160617111101.ZM488@torch.brasslantern.com> 
	<20306.1466207421@thecus.kiddle.eu>
X-Mailer: OpenZMail Classic (0.9.2 24April2005)
To: zsh-workers <zsh-workers@zsh.org>
Subject: Re: Regression: broken completion on modification time
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Seq: zsh-workers 38716

On Jun 18,  1:50am, Oliver Kiddle wrote:
}
} If someone has a setup where they defer menu selection and are bothered
} that they now miss out on the calendar, we can add a style or something.
} Or is there some way to prevent the completion system from saving the
} old_list?

I believe
	compstate[old_list]=''
(or any value other than 'keep', actually) is intended to do that?  But
I'm unclear in which circumstances there is an opportunity to twaddle
that, as the doc description refers to "the widget" rather than "the
completer" or "completion function".

