diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-09-26 07:15:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-26 07:15:07 +0800 |
commit | ac66f5af06ac1f306b0ddb366ba81093508546c4 (patch) | |
tree | 26662b9ac82d8606123d782c9c07b1aeca67cd0c /test/functional/lua/buffer_updates_spec.lua | |
parent | a6c9764edaa349f5f268e5e3bf8b940e137fb5c4 (diff) | |
download | rneovim-ac66f5af06ac1f306b0ddb366ba81093508546c4.tar.gz rneovim-ac66f5af06ac1f306b0ddb366ba81093508546c4.tar.bz2 rneovim-ac66f5af06ac1f306b0ddb366ba81093508546c4.zip |
fix!: make :undo! notify buffer update callbacks (#20344)
When :undo! was introduced to Nvim the implementation of 'inccommand'
preview callback hasn't been fully decided yet, so not notifying buffer
update callbacks made sense for 'inccommand' preview callback in case it
needs to undo the changes itself.
Now it turns out that the undo-and-forget is done automatically for
'inccommand', so it doesn't make sense for :undo! to avoid notifying
buffer update callbacks anymore.
Diffstat (limited to 'test/functional/lua/buffer_updates_spec.lua')
-rw-r--r-- | test/functional/lua/buffer_updates_spec.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/functional/lua/buffer_updates_spec.lua b/test/functional/lua/buffer_updates_spec.lua index 10de45274c..c6c0964ddb 100644 --- a/test/functional/lua/buffer_updates_spec.lua +++ b/test/functional/lua/buffer_updates_spec.lua @@ -118,6 +118,24 @@ describe('lua buffer event callbacks: on_lines', function() } tick = tick + 1 + tick = tick + 1 + command('redo') + check_events { + { "test1", "lines", 1, tick, 3, 5, 4, 32 }; + { "test2", "lines", 1, tick, 3, 5, 4, 32 }; + { "test2", "changedtick", 1, tick+1 }; + } + tick = tick + 1 + + tick = tick + 1 + command('undo!') + check_events { + { "test1", "lines", 1, tick, 3, 4, 5, 13 }; + { "test2", "lines", 1, tick, 3, 4, 5, 13 }; + { "test2", "changedtick", 1, tick+1 }; + } + tick = tick + 1 + -- simulate next callback returning true exec_lua("test_unreg = 'test1'") |