]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.228
- new
[packages/vim.git] / 7.3.228
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.228
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.228
11 Problem:    "2gj" does not always move to the correct position.
12 Solution:   Get length of line after moving to a next line. (James Vega)
13 Files:      src/normal.c
14
15
16 *** ../mercurial/vim73/src/normal.c     2011-05-10 17:29:28.000000000 +0200
17 --- src/normal.c        2011-06-20 00:41:43.000000000 +0200
18 ***************
19 *** 4533,4538 ****
20 --- 4533,4539 ----
21                 }
22                 curwin->w_cursor.lnum++;
23                 curwin->w_curswant %= width2;
24 +               linelen = linetabsize(ml_get_curline());
25             }
26         }
27         }
28 *** ../vim-7.3.227/src/version.c        2011-06-20 00:25:37.000000000 +0200
29 --- src/version.c       2011-06-20 00:45:15.000000000 +0200
30 ***************
31 *** 711,712 ****
32 --- 711,714 ----
33   {   /* Add new patch number below this line */
34 + /**/
35 +     228,
36   /**/
37
38 -- 
39 hundred-and-one symptoms of being an internet addict:
40 197. Your desk collapses under the weight of your computer peripherals.
41
42  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
43 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
44 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
45  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.028409 seconds and 3 git commands to generate.