diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-11-17 22:57:08 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-11-17 22:59:33 +0800 |
| commit | f12a45c45eab75578fa18b1c6395f80b8749f7ef (patch) | |
| tree | 7d3bac62edd3a825b93b05d44645aea0b97513f9 /src/nvim/testdir/test_prompt_buffer.vim | |
| parent | a8f54a94c11d8ff3da299e54de4cbbcfec1fd4ac (diff) | |
| download | rneovim-f12a45c45eab75578fa18b1c6395f80b8749f7ef.tar.gz rneovim-f12a45c45eab75578fa18b1c6395f80b8749f7ef.tar.bz2 rneovim-f12a45c45eab75578fa18b1c6395f80b8749f7ef.zip | |
vim-patch:8.2.2973: fix for recovery and diff mode not tested
Problem: Fix for recovery and diff mode not tested.
Solution: Add a few more tests. (Yegappan Lakshmanan, closes vim/vim#8352)
https://github.com/vim/vim/commit/3044324e8dccd470bd854cf7d9457232cc9c220e
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'src/nvim/testdir/test_prompt_buffer.vim')
| -rw-r--r-- | src/nvim/testdir/test_prompt_buffer.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_prompt_buffer.vim b/src/nvim/testdir/test_prompt_buffer.vim index 9b8a776c95..b8f6c5240c 100644 --- a/src/nvim/testdir/test_prompt_buffer.vim +++ b/src/nvim/testdir/test_prompt_buffer.vim @@ -180,6 +180,8 @@ func Test_prompt_buffer_edit() call assert_beeps('normal! S') call assert_beeps("normal! \<C-A>") call assert_beeps("normal! \<C-X>") + call assert_beeps("normal! dp") + call assert_beeps("normal! do") " pressing CTRL-W in the prompt buffer should trigger the window commands call assert_equal(1, winnr()) exe "normal A\<C-W>\<C-W>" |