From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3588 invoked by alias); 2 Mar 2013 00:05:21 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 31096 Received: (qmail 6258 invoked from network); 2 Mar 2013 00:05:10 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: * X-Spam-Status: No, score=1.0 required=5.0 tests=BAYES_20,DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED,RCVD_IN_DNSWL_NONE, T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=no version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at yahoo.co.uk does not designate permitted sender hosts) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.co.uk; s=s1024; t=1362182378; bh=z5t+6JHGAdv0TgsbKCtVFJxHneFwyN/WIFoR66x14H0=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Received:cc:In-reply-to:From:References:To:Subject:MIME-Version:Content-Type:Content-ID:Date:Message-ID; b=RpQ8rqnKamzcselINQkkgtwqyorDkYg1qGeVblMv4zPJy6V8syqy3W3RMv7Dduc4YiMb6drtzyUKSoSOsGYOMJrWhG25FnS/TxVzltC4obxTYLsymcliHqwyfPDElop259ntFJxM40loN5KfSjFrRnQvIXJc76Nd0Sd0Nar4WUM= X-Yahoo-Newman-Id: 827429.5175.bm@smtp103.mail.ird.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: kYDtfO8VM1kgX1MIBB383GmozNIfoMxsjboNLb0mtqhtc.w fy521y1gVKDBXg_PhjChVTFUbPobNrXsqgyNWhM36cFR6MnKUWee21Gp4Xs2 e1lXFkyamTL1ZZTQls5BXMm9ZnzbFFVCRQTKlX9Cuj96PegJ.duBLQ..guH2 l.XBtHB6YUkvOfbZSeLb1JTaYoOCzfsCCwbrVFhjl9c7We9EgzcXDdzPPTPm 7akoPqwDx3KW9qsS8JwQk3W4OBuTCMxnUAmWzU6pPAAlThVPL4eBIMnfkU.e v_fxS5erPrZ0gCVRYYtZCyWoP1xQc793740Ve4k2RlMvie8cr1dIIKLxip6G .Q2A_9P7p8vuLLoC5oaaOgIrQhtWu2i9Qp0gRHlv4CLng45rLE3QRoZEzVFx 7hE7qGqR4_mxhsvhHpwoCu2KuGxSsvu.185F0E_8_kmxS6w-- X-Yahoo-SMTP: opAkk_CswBAce_kJ3nIPlH80cJI- cc: zsh-workers@zsh.org In-reply-to: From: Oliver Kiddle References: To: Olivier Teuliere Subject: Re: Limitations of menuselect MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <5721.1362182374.1@thecus.kiddle.eu> Date: Sat, 02 Mar 2013 00:59:37 +0100 Message-ID: <5729.1362182377@thecus.kiddle.eu> On 25 Feb, Olivier Teuliere wrote: > 4) When moving the selection in the menu, the inserted text changes. > But for some reason, the accept-line widget only closes the menu, > without accepting the line. So to really accept the line I have to > call accept-line again (basically, I have to hit Enter twice). Actually, you can achieve this by simply binding to .accept-line: bindkey -M menuselect '^M' .accept-line Oliver