forked from aniani/vim
updated for version 7.3.002
Problem: ":find" completion doesn't work when halfway an environment variable. (Dominique Pelle) Solution: Only use in-path completion when expanding file names. (Nazri Ramliy)
This commit is contained in:
parent
da9836cfa9
commit
c24b6977a1
@ -3465,7 +3465,8 @@ set_one_cmd_context(xp, buff)
|
|||||||
case CMD_find:
|
case CMD_find:
|
||||||
case CMD_sfind:
|
case CMD_sfind:
|
||||||
case CMD_tabfind:
|
case CMD_tabfind:
|
||||||
xp->xp_context = EXPAND_FILES_IN_PATH;
|
if (xp->xp_context == EXPAND_FILES)
|
||||||
|
xp->xp_context = EXPAND_FILES_IN_PATH;
|
||||||
break;
|
break;
|
||||||
case CMD_cd:
|
case CMD_cd:
|
||||||
case CMD_chdir:
|
case CMD_chdir:
|
||||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2,
|
||||||
/**/
|
/**/
|
||||||
1,
|
1,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user