comparison src/testdir/test_ins_complete.vim @ 29521:f538704ca03b v9.0.0102

patch 9.0.0102: reading past end of line with insert mode completion Commit: https://github.com/vim/vim/commit/a6f9e300161f4cb54713da22f65b261595e8e614 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 28 21:51:37 2022 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Thu, 28 Jul 2022 23:00:04 +0200
parents 69d24e60f4f8
children d413dccd4f8a
comparison
equal deleted inserted replaced
29520:bdf63b777f16 29521:f538704ca03b
2140 sil! norm o 2140 sil! norm o
2141 2141
2142 bwipe! 2142 bwipe!
2143 endfunc 2143 endfunc
2144 2144
2145 func Test_ins_complete_end_of_line()
2146 " this was reading past the end of the line
2147 new
2148 norm 8o€ý 
2149 sil! norm o
2150
2151 bwipe!
2152 endfunc
2145 2153
2146 " vim: shiftwidth=2 sts=2 expandtab 2154 " vim: shiftwidth=2 sts=2 expandtab