aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuuk van Baal <luukvbaal@gmail.com>2023-12-02 11:59:54 +0100
committerLuuk van Baal <luukvbaal@gmail.com>2023-12-02 12:35:52 +0100
commit1cc358aed6fde4f537d971ad9ee207f3d4afc97a (patch)
treeff4ef46bafa40bb75a4f2b960122171b265b4372
parentc45d1e32a92f5027fe12038b856509efe5c158fb (diff)
downloadrneovim-1cc358aed6fde4f537d971ad9ee207f3d4afc97a.tar.gz
rneovim-1cc358aed6fde4f537d971ad9ee207f3d4afc97a.tar.bz2
rneovim-1cc358aed6fde4f537d971ad9ee207f3d4afc97a.zip
fix(extmarks): restore old position before revalidating
-rw-r--r--src/nvim/extmark.c6
-rw-r--r--test/functional/api/extmark_spec.lua19
2 files changed, 13 insertions, 12 deletions
diff --git a/src/nvim/extmark.c b/src/nvim/extmark.c
index f510845ec7..0b8aea35c0 100644
--- a/src/nvim/extmark.c
+++ b/src/nvim/extmark.c
@@ -389,6 +389,9 @@ void extmark_apply_undo(ExtmarkUndoObject undo_info, bool undo)
} else if (undo_info.type == kExtmarkSavePos) {
ExtmarkSavePos pos = undo_info.data.savepos;
if (undo) {
+ if (pos.old_row >= 0) {
+ extmark_setraw(curbuf, pos.mark, pos.old_row, pos.old_col);
+ }
if (pos.invalidated) {
MarkTreeIter itr[1] = { 0 };
MTKey mark = marktree_lookup(curbuf->b_marktree, pos.mark, itr);
@@ -396,9 +399,6 @@ void extmark_apply_undo(ExtmarkUndoObject undo_info, bool undo)
MTPos end = marktree_get_altpos(curbuf->b_marktree, mark, itr);
buf_put_decor(curbuf, mt_decor(mark), mark.pos.row, end.row < 0 ? mark.pos.row : end.row);
}
- if (pos.old_row >= 0) {
- extmark_setraw(curbuf, pos.mark, pos.old_row, pos.old_col);
- }
// Redo
} else {
if (pos.row >= 0) {
diff --git a/test/functional/api/extmark_spec.lua b/test/functional/api/extmark_spec.lua
index 44a151cf6a..8bfb0effba 100644
--- a/test/functional/api/extmark_spec.lua
+++ b/test/functional/api/extmark_spec.lua
@@ -1628,26 +1628,27 @@ describe('API/extmarks', function()
screen = Screen.new(40, 6)
screen:attach()
feed('dd6iaaa bbb ccc<CR><ESC>gg')
- set_extmark(ns, 1, 0, 0, { invalidate = true, sign_text = 'S1' })
- set_extmark(ns, 2, 1, 0, { invalidate = true, sign_text = 'S2' })
+ meths.set_option_value('signcolumn', 'auto:2', {})
+ set_extmark(ns, 1, 0, 0, { invalidate = true, sign_text = 'S1', end_row = 1 })
+ set_extmark(ns, 2, 1, 0, { invalidate = true, sign_text = 'S2', end_row = 2 })
-- mark with invalidate is removed
- command('d')
+ command('d2')
screen:expect([[
S2^aaa bbb ccc |
aaa bbb ccc |
aaa bbb ccc |
aaa bbb ccc |
- aaa bbb ccc |
+ |
|
]])
-- mark is restored with undo_restore == true
command('silent undo')
screen:expect([[
- S1^aaa bbb ccc |
- S2aaa bbb ccc |
- aaa bbb ccc |
- aaa bbb ccc |
- aaa bbb ccc |
+ S1 ^aaa bbb ccc |
+ S1S2aaa bbb ccc |
+ S2 aaa bbb ccc |
+ aaa bbb ccc |
+ aaa bbb ccc |
|
]])
-- mark is deleted with undo_restore == false