diff options
| author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-04-19 19:57:19 +0100 |
|---|---|---|
| committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-04-20 01:50:56 +0100 |
| commit | 96f62394cfc74e731529ed68039aa8da1facdf13 (patch) | |
| tree | 3c8ed8650db3b94f93f4279a5fc2219e1784756d /src/nvim/testdir/test_move.vim | |
| parent | 26bd5a58dff1b920757f3bc010c2e8f9dbfc9d40 (diff) | |
| download | rneovim-96f62394cfc74e731529ed68039aa8da1facdf13.tar.gz rneovim-96f62394cfc74e731529ed68039aa8da1facdf13.tar.bz2 rneovim-96f62394cfc74e731529ed68039aa8da1facdf13.zip | |
vim-patch:8.2.0174: various commands not completely tested
Problem: Various commands not completely tested.
Solution: Add more test cases. (Yegappan Lakshmanan, closes vim/vim#5551)
https://github.com/vim/vim/commit/5d98dc2a48156d44139b75c689bd3137ff7fe8bf
Diffstat (limited to 'src/nvim/testdir/test_move.vim')
| -rw-r--r-- | src/nvim/testdir/test_move.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_move.vim b/src/nvim/testdir/test_move.vim index d774c93dbd..f666a904b0 100644 --- a/src/nvim/testdir/test_move.vim +++ b/src/nvim/testdir/test_move.vim @@ -35,6 +35,11 @@ func Test_move() call assert_fails('1,2move 1', 'E134') call assert_fails('2,3move 2', 'E134') + call assert_fails("move -100", 'E16:') + call assert_fails("move +100", 'E16:') + call assert_fails('move', 'E16:') %bwipeout! endfunc + +" vim: shiftwidth=2 sts=2 expandtab |