From: Bram Moolenaar Date: Thu, 28 Jul 2022 20:51:37 +0000 (+0100) Subject: patch 9.0.0102: reading past end of line with insert mode completion X-Git-Tag: v9.0.0102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6f9e300161f4cb54713da22f65b261595e8e614;p=thirdparty%2Fvim.git patch 9.0.0102: reading past end of line with insert mode completion Problem: Reading past end of line with insert mode completion. Solution: Check text length. --- diff --git a/src/insexpand.c b/src/insexpand.c index 7339ce9c6e..fc3eff0713 100644 --- a/src/insexpand.c +++ b/src/insexpand.c @@ -3501,7 +3501,7 @@ ins_comp_get_next_word_or_line( { char_u *tmp_ptr = ptr; - if (compl_status_adding()) + if (compl_status_adding() && compl_length <= (int)STRLEN(tmp_ptr)) { tmp_ptr += compl_length; // Skip if already inside a word. diff --git a/src/testdir/test_ins_complete.vim b/src/testdir/test_ins_complete.vim index 35c5785d3a..2b0a2947a0 100644 --- a/src/testdir/test_ins_complete.vim +++ b/src/testdir/test_ins_complete.vim @@ -2142,5 +2142,13 @@ func Test_ins_complete_add() bwipe! endfunc +func Test_ins_complete_end_of_line() + " this was reading past the end of the line + new + norm 8o€ý  + sil! norm o + + bwipe! +endfunc " vim: shiftwidth=2 sts=2 expandtab diff --git a/src/version.c b/src/version.c index 1241e98b08..ce6caa5092 100644 --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 102, /**/ 101, /**/