diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2020-09-30 21:28:21 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2020-09-30 21:28:21 +0200 |
commit | 02dcc3c11ad72e0ae3c6704af6b08d9275ed5470 (patch) | |
tree | 439ad79a0ec632c7ac8b4e40bf0d05169ffecfcd /test/functional/lua/buffer_updates_spec.lua | |
parent | c1a740ae339c0d4de79ad5b82d540a671bd90505 (diff) | |
download | rneovim-02dcc3c11ad72e0ae3c6704af6b08d9275ed5470.tar.gz rneovim-02dcc3c11ad72e0ae3c6704af6b08d9275ed5470.tar.bz2 rneovim-02dcc3c11ad72e0ae3c6704af6b08d9275ed5470.zip |
Fix byte updates for blockwise paste at buffer end
Diffstat (limited to 'test/functional/lua/buffer_updates_spec.lua')
-rw-r--r-- | test/functional/lua/buffer_updates_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/lua/buffer_updates_spec.lua b/test/functional/lua/buffer_updates_spec.lua index 2a1ad210c1..fa31880782 100644 --- a/test/functional/lua/buffer_updates_spec.lua +++ b/test/functional/lua/buffer_updates_spec.lua @@ -486,8 +486,8 @@ describe('lua: nvim_buf_attach on_bytes', function() feed('p') check_events { { "test1", "bytes", 1, 3, 2, 1, 5, 0, 0, 0, 0, 1, 1 }; - { "test1", "bytes", 1, 3, 3, 0, 7, 0, 0, 0, 0, 2, 2 }; - { "test1", "bytes", 1, 3, 4, 0, 10, 0, 0, 0, 0, 2, 2 }; + { "test1", "bytes", 1, 3, 3, 0, 7, 0, 0, 0, 0, 3, 3 }; + { "test1", "bytes", 1, 3, 4, 0, 10, 0, 0, 0, 0, 3, 3 }; } feed('2G0') |