From f4cd5a33b6b06fe77652e19eba46af107de36a2b Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 21 Feb 2025 08:25:11 +0800 Subject: vim-patch:9.1.1127: preinsert text is not cleaned up correctly (#32544) Problem: when 'completeopt' is set to preinsert the preinserted text is not cleared when adding new leader (Yee Cheng Chin) Solution: add a condition to delete preinsert text in edit function (glepnir) closes: vim/vim#16672 https://github.com/vim/vim/commit/52fd867f5e8a371653ee4fb6664593c82030f855 Co-authored-by: glepnir --- test/old/testdir/test_ins_complete.vim | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test') diff --git a/test/old/testdir/test_ins_complete.vim b/test/old/testdir/test_ins_complete.vim index 4d4a17e850..a0570c7c5d 100644 --- a/test/old/testdir/test_ins_complete.vim +++ b/test/old/testdir/test_ins_complete.vim @@ -3110,6 +3110,11 @@ function Test_completeopt_preinsert() call assert_equal("fobar", getline('.')) call assert_equal(5, col('.')) + set cot=preinsert + call feedkeys("Sfoo1 foo2\f\\bar", 'tx') + call assert_equal("fbar", getline('.')) + call assert_equal(4, col('.')) + bw! set cot& set omnifunc& -- cgit