diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-07-15 20:45:52 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-15 20:45:52 +0800 |
| commit | c0ae3df0528263d677fff3e1150a7b65589fb88d (patch) | |
| tree | 785d4c06cf5e3a9d9b428e7c29648dce2ebabd2c /src/nvim/testdir/test_marks.vim | |
| parent | b9f15caf5ca879841afe582f68838af208b86142 (diff) | |
| parent | 8bfcff6c4a10f5171e29776eea6498a9856b7200 (diff) | |
| download | rneovim-c0ae3df0528263d677fff3e1150a7b65589fb88d.tar.gz rneovim-c0ae3df0528263d677fff3e1150a7b65589fb88d.tar.bz2 rneovim-c0ae3df0528263d677fff3e1150a7b65589fb88d.zip | |
Merge pull request #19376 from zeertzjq/vim-8.2.0535
vim-patch:8.2.{0535,0542}: regexp patterns not fully tested
Diffstat (limited to 'src/nvim/testdir/test_marks.vim')
| -rw-r--r-- | src/nvim/testdir/test_marks.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_marks.vim b/src/nvim/testdir/test_marks.vim index 8f94224128..74e63d9d69 100644 --- a/src/nvim/testdir/test_marks.vim +++ b/src/nvim/testdir/test_marks.vim @@ -216,6 +216,9 @@ func Test_mark_error() call assert_fails('mark xx', 'E488:') call assert_fails('mark _', 'E191:') call assert_beeps('normal! m~') + + call setpos("'k", [0, 100, 1, 0]) + call assert_fails("normal 'k", 'E19:') endfunc " Test for :lockmarks when pasting content |