diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-09 17:08:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-09 17:08:21 -0400 |
| commit | d2be261e8d1bcf165346255ae701564a5f62bf7d (patch) | |
| tree | 470c5fb8f4e57098295e87f0df318f729569dd83 /src/nvim/testdir/test_move.vim | |
| parent | f8173df4d7ecec239629921736340d3f4d1dcfd4 (diff) | |
| parent | eef5a627bfc4341fdd6f12ea5932d11b12fbf2c0 (diff) | |
| download | rneovim-d2be261e8d1bcf165346255ae701564a5f62bf7d.tar.gz rneovim-d2be261e8d1bcf165346255ae701564a5f62bf7d.tar.bz2 rneovim-d2be261e8d1bcf165346255ae701564a5f62bf7d.zip | |
Merge pull request #14403 from seandewar/vim-8.2.1933
vim-patch:8.2.{0174,1933,1935,1946,2286,2287}
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 |