diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-25 22:48:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-25 22:48:53 -0500 |
| commit | 4537ff659efbc65f4c94b88cce8fb3c39d03aae5 (patch) | |
| tree | 50dc58f07bc9f3b05b1635fac63aff30e9d23e1e /src/nvim/testdir/test_window_cmd.vim | |
| parent | dd00c74737241945187e3e0b939d289af25e505e (diff) | |
| parent | fe5dc266483aa4878b30ecc660b5401648545f27 (diff) | |
| download | rneovim-4537ff659efbc65f4c94b88cce8fb3c39d03aae5.tar.gz rneovim-4537ff659efbc65f4c94b88cce8fb3c39d03aae5.tar.bz2 rneovim-4537ff659efbc65f4c94b88cce8fb3c39d03aae5.zip | |
Merge pull request #13375 from janlazo/vim-8.2.2041
vim-patch:8.1.{2290,2390},8.2.{242,257,302,303,462,991,996,2041,2042,2043,2047,2048,2049,2054}
Diffstat (limited to 'src/nvim/testdir/test_window_cmd.vim')
| -rw-r--r-- | src/nvim/testdir/test_window_cmd.vim | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/nvim/testdir/test_window_cmd.vim b/src/nvim/testdir/test_window_cmd.vim index 500e3ff088..c630e678fd 100644 --- a/src/nvim/testdir/test_window_cmd.vim +++ b/src/nvim/testdir/test_window_cmd.vim @@ -172,39 +172,6 @@ func Test_window_split_edit_bufnr() %bw! endfunc -func Test_window_preview() - " Open a preview window - pedit Xa - call assert_equal(2, winnr('$')) - call assert_equal(0, &previewwindow) - - " Go to the preview window - wincmd P - call assert_equal(1, &previewwindow) - - " Close preview window - wincmd z - call assert_equal(1, winnr('$')) - call assert_equal(0, &previewwindow) - - call assert_fails('wincmd P', 'E441:') -endfunc - -func Test_window_preview_from_help() - filetype on - call writefile(['/* some C code */'], 'Xpreview.c') - help - pedit Xpreview.c - wincmd P - call assert_equal(1, &previewwindow) - call assert_equal('c', &filetype) - wincmd z - - filetype off - close - call delete('Xpreview.c') -endfunc - func Test_window_exchange() e Xa |