diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-14 06:09:53 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-07-14 06:12:42 +0800 |
commit | 3700d94c6fa3c6e2a58fc02414e4ca32b823214f (patch) | |
tree | 1a79b63b55e11ffb7c314eceeaa0e6bcb5a9a78e /test | |
parent | 5531c95101b7656416c97acdd4acb3173d09f64c (diff) | |
download | rneovim-3700d94c6fa3c6e2a58fc02414e4ca32b823214f.tar.gz rneovim-3700d94c6fa3c6e2a58fc02414e4ca32b823214f.tar.bz2 rneovim-3700d94c6fa3c6e2a58fc02414e4ca32b823214f.zip |
vim-patch:9.1.0579: Ex command is still executed after giving E1247
Problem: Ex command is still executed after giving E1247.
Solution: Indicate the error properly and set cmd to NULL.
(zeertzjq)
closes: vim/vim#15241
https://github.com/vim/vim/commit/d1b5ea984d41102d253ecdd9a76124cd4c58b97d
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_excmd.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/old/testdir/test_excmd.vim b/test/old/testdir/test_excmd.vim index d900207928..50e5080f60 100644 --- a/test/old/testdir/test_excmd.vim +++ b/test/old/testdir/test_excmd.vim @@ -725,6 +725,8 @@ func Test_address_line_overflow() call setline(1, range(100)) call assert_fails('|.44444444444444444444444', 'E1247:') call assert_fails('|.9223372036854775806', 'E1247:') + call assert_fails('.44444444444444444444444d', 'E1247:') + call assert_equal(range(100)->map('string(v:val)'), getline(1, '$')) $ yank 77777777777777777777 |