comparison src/testdir/test_normal.vim @ 23748:93f90f2ff4e9 v8.2.2415

patch 8.2.2415: no way to check for the cmdwin feature Commit: https://github.com/vim/vim/commit/21829c5f2c86cd525c8468121b4fc54c5d75bf6e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 26 22:42:21 2021 +0100 patch 8.2.2415: no way to check for the cmdwin feature Problem: No way to check for the cmdwin feature, cmdline_hist is now always enabled. Solution: Add has('cmdwin') support. Skip arglist test on Windows temporarily.
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Jan 2021 22:45:04 +0100
parents 1baf86830e44
children 6d3dee0d7de5
comparison
equal deleted inserted replaced
23747:f0d11de94492 23748:93f90f2ff4e9
2582 set noim 2582 set noim
2583 call assert_equal('are some words', getline(1)) 2583 call assert_equal('are some words', getline(1))
2584 call assert_false(&insertmode) 2584 call assert_false(&insertmode)
2585 call assert_beeps("normal! \<C-\>\<C-A>", 'xt') 2585 call assert_beeps("normal! \<C-\>\<C-A>", 'xt')
2586 2586
2587 " Using CTRL-\ CTRL-N in cmd window should close the window 2587 if has('cmdwin')
2588 call feedkeys("q:\<C-\>\<C-N>", 'xt') 2588 " Using CTRL-\ CTRL-N in cmd window should close the window
2589 call assert_equal('', getcmdwintype()) 2589 call feedkeys("q:\<C-\>\<C-N>", 'xt')
2590 call assert_equal('', getcmdwintype())
2591 endif
2590 2592
2591 " clean up 2593 " clean up
2592 bw! 2594 bw!
2593 endfunc 2595 endfunc
2594 2596