From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16888 invoked by alias); 9 Dec 2016 14:50:57 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 22166 Received: (qmail 20039 invoked from network); 9 Dec 2016 14:50:56 -0000 X-Qmail-Scanner-Diagnostics: from nm4-vm8.bullet.mail.ir2.yahoo.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(212.82.96.106):SA:0(0.0/5.0):. Processed in 0.774384 secs); 09 Dec 2016 14:50:56 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=FREEMAIL_FROM, RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_PASS,T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: okiddle@yahoo.co.uk X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.mail.yahoo.com designates 212.82.96.106 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.co.uk; s=s2048; t=1481294648; bh=yBzVM7rY2O0BWYJgGsN26JWMSTGMzQTTF2wWPW9oiRw=; h=cc:In-reply-to:From:References:To:Subject:Date:From:Subject; b=hevRAGwbSZUeQ8k0JLDvfv00k3/nFMZbdpmSDt/Xo4ldBHnpSRc6Q9uiwsniL6HS+VPQGEb0bvLgTEIcCJq3/GzmV2n/4F8uK4HlCgRMnteHJyhyvGIsY4jvV+O1N4onN11YYcFFwafxmEi+4ZYbwn0NUcB2i5XeNR/Q3016WjDbpmb0CzpUIkQQi/Wadr1VZ/vmd7JqL0PchYsuX/c1wgPGxrx+uviYy9XHImKjxp1XTraaLOSOouygfAqKAAJl5FMQOlymVyjxYVJcBELGLVONUTagEZffrZjRweLoczP6kJx+d2/VZbZbHRlSIe//OZSODj4L6SbRU8Hdws8TLA== X-Yahoo-Newman-Id: 538767.6915.bm@smtp116.mail.ir2.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: JTW7CKIVM1nWFikTFWxQzExtW4sjp8bReJsYuGPJdZHcwOT 1j9SHVxAP5Cwws_Wj342yifd_MXYQqhd.zcA8LDdV_3aemBNIVpZyCws6Ofe jrET73ZCpSn9O.VmBhLKysrFOqn01pcUPp8PYQqkB15Hjuq9E0le0OIk7z64 nOEtwMON8HJBrqZBHC4Ewpj.cWWYotFO1cUc5oxZbYP7mawb8b_pxYhBZEWi cD7RFbqCpK88LZc2BvnwnqcUMDL2UpjcfileFKrY_AltugfI2Ly81VpuQSsu DJ6JEhaDWgw3uJ_eLKe2BQmjyWCQmUx8ifHaea5uMq_b7IEeqrbgc1t4Fnh7 tMn4V1cKw6oddA8JM1AaqUpBRsYuMw14aA2l6qHiOpslc5W.iDyVDDvsNSLw R2h7DGqTLF.m7nZhjnmXq2Spg1GJeRALnO22eJYu8e2g1zFXXvZAMqMCXIdZ cWJtLxzOasu_Wsmw6c.lMVGMw9I7b.ObwK1toID4ljJSG1MV09GMlYkuw_QF E4j2P8.bKQph4jvPR5iBvb_bGmMYjn.KkSQegJeEy X-Yahoo-SMTP: opAkk_CswBAce_kJ3nIPlH80cJI- cc: zsh-users@zsh.org In-reply-to: <20161209122958.GD19559@256bit.org> From: Oliver Kiddle References: <20161209122958.GD19559@256bit.org> To: Christian Brabandt Subject: Re: vi mode reset MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <57126.1481294647.1@hydra.kiddle.eu> Date: Fri, 09 Dec 2016 15:44:07 +0100 Message-ID: <57127.1481294647@hydra.kiddle.eu> Christian Brabandt wrote: > However, since the upgrade I noticed that my zsh resets vi mode, on > various occasions, but I cannot reproduce exactly when exactly this What exactly do you mean by "resets vi mode". Switches to command/normal mode without your having pressed escape, perhaps? Many key combinations send a sequence of characters starting with an escape so zsh may be mis-interpreting that. > happens. I think this usually happens either if I am pasting something > into the terminal (using putty from Windows and pasting using > keys) or running Vim. Sounds like possibly an effect of the bracketed paste feature. You can disable that with: unset zle_bracketed_paste It'd be better to understand how it is coming to fail for you. Perhaps your terminal has a different bracketed paste mode. Or perhaps you've removed the key binding for it. Do you perhaps clear a range of key bindings in your .zshrc? What does this show?: bindkey -L |grep 200 What do you see if you press Ctrl-V before pasting text? Do you perhaps have some other safe-paste or bracketed-paste plugin from elsewhere. Are you using something like oh-my-zsh or prezto? Oliver