Skip to content

Commit 55b4dc8

Browse files
committed
fix: cursor does not preserve when log above
1 parent 78aba1c commit 55b4dc8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lua/neolog/actions.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ local function after_insert_log_statements(log_statements, insert_cursor_pos, or
208208
local original_row = original_cursor_position[2] - 1
209209
local inserted_lines = {}
210210
for _, statement in ipairs(log_statements) do
211-
vim.fn.extend(inserted_lines, statement.inserted_rows)
211+
vim.list_extend(inserted_lines, statement.inserted_rows)
212212
end
213213

214214
table.sort(inserted_lines, function(a, b)

tests/neolog/actions/neolog_actions_spec.lua

+2
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,7 @@ describe("neolog.actions.insert_log", function()
463463
filetype = "javascript",
464464
action = function()
465465
actions.insert_log({ position = "below" })
466+
helper.wait(20)
466467
end,
467468
expected = function()
468469
local cursor_position = vim.fn.getpos(".")
@@ -479,6 +480,7 @@ describe("neolog.actions.insert_log", function()
479480
filetype = "javascript",
480481
action = function()
481482
actions.insert_log({ position = "above" })
483+
helper.wait(20)
482484
end,
483485
expected = function()
484486
local cursor_position = vim.fn.getpos(".")

0 commit comments

Comments
 (0)