diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-30 21:58:16 -0400 |
|---|---|---|
| committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-31 21:06:11 -0400 |
| commit | e39973156173ce8511ff1ae88eec19a3200e08d8 (patch) | |
| tree | f87733727d0cc8dedb89560da0694a3238bef7d7 /src/nvim/testdir/test_normal.vim | |
| parent | 73e3669c7a8e2d4f63be17e0f93ee3c641f8806f (diff) | |
| download | rneovim-e39973156173ce8511ff1ae88eec19a3200e08d8.tar.gz rneovim-e39973156173ce8511ff1ae88eec19a3200e08d8.tar.bz2 rneovim-e39973156173ce8511ff1ae88eec19a3200e08d8.zip | |
vim-patch:8.2.2914: cannot paste a block without adding padding
Problem: Cannot paste a block without adding padding.
Solution: Add "zp" and "zP" which paste without adding padding. (Christian
Brabandt, closes vim/vim#8289)
https://github.com/vim/vim/commit/2fa9384ca1b600b934bec81a72c5fb7ce757503a
Cherry-pick Test_normal_z_error() from patch v8.2.0369.
Diffstat (limited to 'src/nvim/testdir/test_normal.vim')
| -rw-r--r-- | src/nvim/testdir/test_normal.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_normal.vim b/src/nvim/testdir/test_normal.vim index 7a846e5ea0..e9de94c0b3 100644 --- a/src/nvim/testdir/test_normal.vim +++ b/src/nvim/testdir/test_normal.vim @@ -512,6 +512,12 @@ func Test_normal14_page_eol() bw! endfunc +" Test for errors with z command +func Test_normal_z_error() + call assert_beeps('normal! z2p') + call assert_beeps('normal! zq') +endfunc + func Test_normal15_z_scroll_vert() " basic test for z commands that scroll the window call Setup_NewWindow() |