]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.372
- new
[packages/vim.git] / 7.3.372
CommitLineData
ae497238
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.372
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.372
11Problem: When using a command line mapping to <Up> with file name
12 completion to go one directory up, 'wildchar' is inserted.
13 (Yasuhiro Matsumoto)
14Solution: Set the KeyTyped flag.
15Files: src/ex_getln.c
16
17
18*** ../vim-7.3.371/src/ex_getln.c 2011-10-26 22:02:10.000000000 +0200
19--- src/ex_getln.c 2011-12-08 18:40:49.000000000 +0100
20***************
21*** 645,651 ****
22--- 645,655 ----
23 }
24 else if (ccline.cmdpos > i)
25 cmdline_del(i);
26+
27+ /* Now complete in the new directory. Set KeyTyped in case the
28+ * Up key came from a mapping. */
29 c = p_wc;
30+ KeyTyped = TRUE;
31 }
32 }
33
34*** ../vim-7.3.371/src/version.c 2011-12-08 17:49:31.000000000 +0100
35--- src/version.c 2011-12-08 18:42:54.000000000 +0100
36***************
37*** 716,717 ****
38--- 716,719 ----
39 { /* Add new patch number below this line */
40+ /**/
41+ 372,
42 /**/
43
44--
45hundred-and-one symptoms of being an internet addict:
46255. You work for a newspaper and your editor asks you to write an
47 article about Internet addiction...in the "first person."
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51\\\ an exciting new programming language -- http://www.Zimbu.org ///
52 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.031782 seconds and 4 git commands to generate.