We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9416bca commit dc55da4Copy full SHA for dc55da4
src/edit.c
@@ -5189,7 +5189,7 @@ ins_complete(c)
5189
mb_ptr_back(line, p);
5190
while (vim_isfilec(PTR2CHAR(p)) && p >= line)
5191
5192
- startcol = p - line;
+ startcol = (int)(p - line);
5193
5194
compl_col += ++startcol;
5195
compl_length = (int)curs_col - startcol;
src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
738
739
static int included_patches[] =
740
{ /* Add new patch number below this line */
741
+/**/
742
+ 23,
743
/**/
744
22,
745
0 commit comments