diff src/testdir/test_ins_complete.vim @ 23772:f5225486d3de v8.2.2427

patch 8.2.2427: can still switch windows for 'completefunc' Commit: https://github.com/vim/vim/commit/3eb6bd9c2b36dcce471bfb543c8d5488f1dc17a4 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 29 21:47:24 2021 +0100 patch 8.2.2427: can still switch windows for 'completefunc' Problem: Can still switch windows for 'completefunc'. Solution: Also disallow switching windows for other completions.
author Bram Moolenaar <Bram@vim.org>
date Fri, 29 Jan 2021 22:00:04 +0100
parents 385d33dfb7df
children c63a2d24b7e2
line wrap: on
line diff
--- a/src/testdir/test_ins_complete.vim
+++ b/src/testdir/test_ins_complete.vim
@@ -548,7 +548,7 @@ func Test_completefunc_error()
   endfunc
   set completefunc=CompleteFunc
   call setline(1, ['', 'abcd', ''])
-  call assert_fails('exe "normal 2G$a\<C-X>\<C-U>"', 'E840:')
+  call assert_fails('exe "normal 2G$a\<C-X>\<C-U>"', 'E578:')
 
   " delete text when called for the second time
   func CompleteFunc2(findstart, base)