]> granicus.if.org Git - vim/commitdiff
patch 9.0.0572: insert complete tests leave a mapping behind v9.0.0572
authorzeertzjq <zeertzjq@outlook.com>
Sat, 24 Sep 2022 13:08:23 +0000 (14:08 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 24 Sep 2022 13:08:23 +0000 (14:08 +0100)
Problem:    Insert complete tests leave a mapping behind.
Solution:   Use a buffer-local mapping. (closes #11211)

src/testdir/test_ins_complete.vim
src/version.c

index aca97d047e54f73da8f0b88755fbd210ae172775..379db7fe7965b97fb7de5ee3e0e542721c41526a 100644 (file)
@@ -701,8 +701,8 @@ endfunc
 
 " Test for using complete() with completeopt+=longest
 func Test_complete_with_longest()
-  inoremap <f3> <cmd>call complete(1, ["iaax", "iaay", "iaaz"])<cr>
   new
+  inoremap <buffer> <f3> <cmd>call complete(1, ["iaax", "iaay", "iaaz"])<cr>
 
   " default: insert first match
   set completeopt&
@@ -716,6 +716,7 @@ func Test_complete_with_longest()
   exe "normal Aa\<f3>\<esc>"
   call assert_equal('iaa', getline(1))
   set completeopt&
+  bwipe!
 endfunc
 
 
@@ -1272,7 +1273,7 @@ endfunc
 " A mapping is not used for the key after CTRL-X.
 func Test_no_mapping_for_ctrl_x_key()
   new
-  inoremap <C-K> <Cmd>let was_mapped = 'yes'<CR>
+  inoremap <buffer> <C-K> <Cmd>let was_mapped = 'yes'<CR>
   setlocal dictionary=README.txt
   call feedkeys("aexam\<C-X>\<C-K> ", 'xt')
   call assert_equal('example ', getline(1))
index ad6a9edfe732def6c35535d1106eb0eb56ea18d7..b07c0131df80bb305d1f8a2e8b4dfb18487d173f 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    572,
 /**/
     571,
 /**/