Skip to content

Commit 72d9386

Browse files
committed
updated for version 7.3.165
Problem: ":find" completion does not escape spaces in a directory name. (Isz) Solution: Add backslashes for EXPAND_FILES_IN_PATH. (Carlo Teubner)
1 parent a7435d1 commit 72d9386

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/ex_getln.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3702,6 +3702,7 @@ ExpandEscape(xp, str, numfiles, files, options)
37023702
if (options & WILD_ESCAPE)
37033703
{
37043704
if (xp->xp_context == EXPAND_FILES
3705+
|| xp->xp_context == EXPAND_FILES_IN_PATH
37053706
|| xp->xp_context == EXPAND_SHELLCMD
37063707
|| xp->xp_context == EXPAND_BUFFERS
37073708
|| xp->xp_context == EXPAND_DIRECTORIES)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,8 @@ static char *(features[]) =
714714

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
165,
717719
/**/
718720
164,
719721
/**/

0 commit comments

Comments
 (0)