]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.228
- new: 7.3.264
[packages/vim.git] / 7.3.228
CommitLineData
a2e11672
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.228
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.228
11Problem: "2gj" does not always move to the correct position.
12Solution: Get length of line after moving to a next line. (James Vega)
13Files: 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--
39hundred-and-one symptoms of being an internet addict:
40197. 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.136511 seconds and 4 git commands to generate.