diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2021-05-17 20:24:11 +0200 |
---|---|---|
committer | Thomas Vigouroux <tomvig38@gmail.com> | 2021-05-18 19:31:56 +0200 |
commit | 237175cf20af5cac6d2e02560a65fd4590d2080c (patch) | |
tree | 0a5b0ceede0f6c2185df371d80ab3ce65bbd868f /test/functional/lua/buffer_updates_spec.lua | |
parent | c46d9814619cee5183ea08989352d72fb9aaea5a (diff) | |
download | rneovim-237175cf20af5cac6d2e02560a65fd4590d2080c.tar.gz rneovim-237175cf20af5cac6d2e02560a65fd4590d2080c.tar.bz2 rneovim-237175cf20af5cac6d2e02560a65fd4590d2080c.zip |
fix(bufupdate): send events when inserting with virtualedit
Problem first raised
https://github.com/nvim-treesitter/nvim-treesitter/issues/1304
Diffstat (limited to 'test/functional/lua/buffer_updates_spec.lua')
-rw-r--r-- | test/functional/lua/buffer_updates_spec.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/functional/lua/buffer_updates_spec.lua b/test/functional/lua/buffer_updates_spec.lua index 5bfab1d52d..54e10fabd6 100644 --- a/test/functional/lua/buffer_updates_spec.lua +++ b/test/functional/lua/buffer_updates_spec.lua @@ -936,6 +936,26 @@ describe('lua: nvim_buf_attach on_bytes', function() } end) + it("virtual edit", function () + local check_events = setup_eventcheck(verify, { "", " " }) + + meths.set_option("virtualedit", "all") + + feed [[<Right><Right>iab<ESC>]] + + check_events { + { "test1", "bytes", 1, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2 }; + { "test1", "bytes", 1, 4, 0, 2, 2, 0, 0, 0, 0, 2, 2 }; + } + + feed [[j<Right><Right>iab<ESC>]] + + check_events { + { "test1", "bytes", 1, 5, 1, 0, 5, 0, 1, 1, 0, 8, 8 }; + { "test1", "bytes", 1, 6, 1, 5, 10, 0, 0, 0, 0, 2, 2 }; + } + end) + it("block visual paste", function() local check_events = setup_eventcheck(verify, {"AAA", "BBB", |