From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11412 invoked by alias); 22 Oct 2014 10:24:52 -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: 33496 Received: (qmail 14655 invoked from network); 22 Oct 2014 10:24:49 -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=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.co.uk; s=s1024; t=1413973483; bh=5MSIwR5c8F3oFyywwbT8khlEobl7glMyk6/3tfsTnUI=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:cc:In-reply-to:From:References:To:Subject:MIME-Version:Content-Type:Content-ID:Content-Transfer-Encoding:Date:Message-ID; b=lRyerrel8le1oEfCMkdJECEcVxzpJ2Fd4HYfTL7odir8Ld7P8AllubSiKOkZH/pfryDox9lL1AdKq/ZVBCCj4+hOy5P1H5k2Fjq9DxaEeErpwUPS3Yly48M/sPHFrzEByUyvXPgJls+1csxbnoLahUOL9lMLmSBlEZEAT8Eeojg= X-Yahoo-Newman-Id: 619038.32666.bm@smtp129.mail.ir2.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: vOhRm3EVM1lylpOXieKG3ddlmw14wbNDXjf8g7QygXh9x8U OHICz4gi.u8XqwITv3L5YkBAdp7CnqU.8oJomttXE2RrFImtDqNQL1xHFEis MPN22TmYHQIdFjkETBlgMJt214kQ_4tUHmUi9cF858BFmHDDs3rXnGHaCbJt CKnAgaOpgbbHjSZ59UFI2KgHLitpBGDtN87E_GRkIRbGRdjVUDIhJWa_1ITM zOlkBAO1.czjeUBzbMrxlCDvWTkJfwatYEN74PjOM2nZyD.hncNYuqS_cTPd 52S8Jvd6d2f7G3G.5w.1n8RziHWfij0plX2qixu0D5b6PbhN_H4ArPLlS79W LJXT2195jXl9bp4U2V4t6R6Cy3HTzYyiQetE3Kp_Xkd.Tz7BQ5jshsSW8eDk Njsm1xRxVsY_yrVFHqFpP2BDs7bV_S8KKPX42vYPh7_gIooh2PaIyMkUukc5 Khudll5aod9qCT2OZejATJCRXJG_Ln1nSGW5FDdoJABVkt8m7SgXXQI4w8QY PwcROuX0HNUGiJ82hswyAT4u4u.fvCg-- X-Yahoo-SMTP: opAkk_CswBAce_kJ3nIPlH80cJI- cc: zsh-workers@zsh.org In-reply-to: From: Oliver Kiddle References: To: =?UTF-8?B?R8OhYm9yIE3DoXJ0b24=?= Subject: Re: bug report: vi mode yank should yank to 0 register MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-ID: <25187.1413973442.1@thecus.kiddle.eu> Content-Transfer-Encoding: 8bit Date: Wed, 22 Oct 2014 12:24:42 +0200 Message-ID: <25197.1413973482@thecus.kiddle.eu> Gábor Márton wrote: > > I am not sure if this list is the proper form of reporting bugs, please > forgive me. No, this is exactly the right place. Thanks for the report. > I have noticed that zsh vi mode is using the " register instead of the 0 > register when a yank is done. It's a vi mode not a vim mode. And as in vi, there is no 0 register. You might notice that you get a beep after pressing "0. I'd agree that it would be nice to have some vim features working for zsh. This is one case where I prefer the emacs yank stack concept. I'm not sure that "1 to "9 are exactly working as in vi: both deletions and yanks go to them. This is probably because they were implemented on top of the killring which was implemented with emacs in mind first. Oliver