To: vim-dev@vim.org Subject: Patch 6.3a.006 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 6.3a.006 Problem: "yip" moves the cursor to the first yanked line, but not to the first column. Looks like not all text was yanked. (Jens Paulus) Solution: Move the cursor to the first column. Files: src/search.c *** ../vim-6.3a.005/src/search.c Sat May 8 21:52:59 2004 --- src/search.c Sat May 8 22:12:15 2004 *************** *** 3582,3587 **** --- 3582,3588 ---- #endif { oap->start.lnum = start_lnum; + oap->start.col = 0; oap->motion_type = MLINE; } curwin->w_cursor.lnum = end_lnum; *** ../vim-6.3a.005/src/version.c Sat May 8 21:52:59 2004 --- src/version.c Sat May 8 22:17:11 2004 *************** *** 643,644 **** --- 643,646 ---- { /* Add new patch number below this line */ + /**/ + 6, /**/ -- Press any key to continue, press any other key to quit. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ Project leader for A-A-P -- http://www.A-A-P.org /// \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///