comparison src/testdir/test_tabpage.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 1503ecd54f8a
children cdaff4db7760
comparison
equal deleted inserted replaced
23747:f0d11de94492 23748:93f90f2ff4e9
615 call delete('XTest_tabpage_cmdheight') 615 call delete('XTest_tabpage_cmdheight')
616 endfunc 616 endfunc
617 617
618 " Test for closing the tab page from a command window 618 " Test for closing the tab page from a command window
619 func Test_tabpage_close_cmdwin() 619 func Test_tabpage_close_cmdwin()
620 CheckFeature cmdwin
621
620 tabnew 622 tabnew
621 call feedkeys("q/:tabclose\<CR>\<Esc>", 'xt') 623 call feedkeys("q/:tabclose\<CR>\<Esc>", 'xt')
622 call assert_equal(2, tabpagenr('$')) 624 call assert_equal(2, tabpagenr('$'))
623 call feedkeys("q/:tabonly\<CR>\<Esc>", 'xt') 625 call feedkeys("q/:tabonly\<CR>\<Esc>", 'xt')
624 call assert_equal(2, tabpagenr('$')) 626 call assert_equal(2, tabpagenr('$'))