comparison src/testdir/test_cmdwin.vim @ 29820:8629106c4982 v9.0.0249

patch 9.0.0249: no test for what 9.0.0234 fixes Commit: https://github.com/vim/vim/commit/3a7ad904d27d904e57f7a22eb33872a587ae6673 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 23 19:54:27 2022 +0100 patch 9.0.0249: no test for what 9.0.0234 fixes Problem: No test for what 9.0.0234 fixes. Solution: Add a test. (issue https://github.com/vim/vim/issues/10950)
author Bram Moolenaar <Bram@vim.org>
date Tue, 23 Aug 2022 21:00:02 +0200
parents beab53bb989e
children f7a2de8a4ddc
comparison
equal deleted inserted replaced
29819:38f88030a734 29820:8629106c4982
371 silent normal q/s 371 silent normal q/s
372 372
373 set ve= cpo-=$ 373 set ve= cpo-=$
374 endfunc 374 endfunc
375 375
376 " Check that a :normal command can be used to stop Visual mode without side
377 " effects.
378 func Test_normal_escape()
379 call feedkeys("q:i\" foo\<Esc>:normal! \<C-V>\<Esc>\<CR>:\" bar\<CR>", 'ntx')
380 call assert_equal('" bar', @:)
381 endfunc
382
376 383
377 " vim: shiftwidth=2 sts=2 expandtab 384 " vim: shiftwidth=2 sts=2 expandtab