]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.002
- new
[packages/vim.git] / 7.3.002
CommitLineData
922ebca2
AG
1To: vim-dev@vim.org
2Subject: Patch 7.3.002
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.002
11Problem: ":find" completion doesn't work when halfway an environment
12 variable. (Dominique Pelle)
13Solution: Only use in-path completion when expanding file names. (Nazri
14 Ramliy)
15Files: src/ex_docmd.c
16
17
18*** ../vim-7.3.001/src/ex_docmd.c 2010-08-15 21:57:27.000000000 +0200
19--- src/ex_docmd.c 2010-08-16 20:51:22.000000000 +0200
20***************
21*** 3465,3471 ****
22 case CMD_find:
23 case CMD_sfind:
24 case CMD_tabfind:
25! xp->xp_context = EXPAND_FILES_IN_PATH;
26 break;
27 case CMD_cd:
28 case CMD_chdir:
29--- 3465,3472 ----
30 case CMD_find:
31 case CMD_sfind:
32 case CMD_tabfind:
33! if (xp->xp_context == EXPAND_FILES)
34! xp->xp_context = EXPAND_FILES_IN_PATH;
35 break;
36 case CMD_cd:
37 case CMD_chdir:
38*** ../vim-7.3.001/src/version.c 2010-08-16 21:46:12.000000000 +0200
39--- src/version.c 2010-08-16 22:33:13.000000000 +0200
40***************
41*** 716,717 ****
42--- 716,719 ----
43 { /* Add new patch number below this line */
44+ /**/
45+ 2,
46 /**/
47
48--
49Warning label on a superhero Halloween costume:
50"Caution: Cape does not enable user to fly."
51
52 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
53/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54\\\ download, build and distribute -- http://www.A-A-P.org ///
55 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.033604 seconds and 4 git commands to generate.