summaryrefslogtreecommitdiff
path: root/src/edit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/edit.c b/src/edit.c
index 98737ece6..b2b778729 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -5187,11 +5187,13 @@ ins_complete(c)
/* Go back to just before the first filename character. */
mb_ptr_back(line, p);
- while (vim_isfilec(PTR2CHAR(p)) && p >= line)
+ while (p > line && vim_isfilec(PTR2CHAR(p)))
mb_ptr_back(line, p);
- startcol = (int)(p - line);
+ startcol = (int)(p - line) + 1;
+ if (p == line && vim_isfilec(PTR2CHAR(p)))
+ startcol = 0;
- compl_col += ++startcol;
+ compl_col += startcol;
compl_length = (int)curs_col - startcol;
compl_pattern = addstar(line + compl_col, compl_length,
EXPAND_FILES);