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 05eb5b9 commit 573545aCopy full SHA for 573545a
2 files changed
src/ops.c
@@ -2840,7 +2840,8 @@ do_addsub(
2840
// Delete the one character before the insert.
2841
curwin->w_cursor = save_pos;
2842
(void)del_char(FALSE);
2843
- curwin->w_cursor.col = STRLEN(ml_get_curline()) - bytes_after;
+ curwin->w_cursor.col = (colnr_T)(STRLEN(ml_get_curline())
2844
+ - bytes_after);
2845
--todel;
2846
}
2847
while (todel-- > 0)
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 1694,
755
/**/
756
1693,
757
0 commit comments