diff --git a/data/core/commands/doc.lua b/data/core/commands/doc.lua index 1155ac26..d697e663 100644 --- a/data/core/commands/doc.lua +++ b/data/core/commands/doc.lua @@ -93,11 +93,14 @@ local function cut_or_copy(delete) system.set_clipboard(full_text) end -local function split_cursor(direction) +local function split_cursor(dv, direction) local new_cursors = {} - for _, line1, col1 in doc():get_selections() do - if line1 + direction >= 1 and line1 + direction <= #doc().lines then - table.insert(new_cursors, { line1 + direction, col1 }) + local dv_translate = direction < 0 + and DocView.translate.previous_line + or DocView.translate.next_line + for _, line1, col1 in dv.doc:get_selections() do + if line1 + direction >= 1 and line1 + direction <= #dv.doc.lines then + table.insert(new_cursors, { dv_translate(dv.doc, line1, col1, dv) }) end end -- add selections in the order that will leave the "last" added one as doc.last_selection @@ -107,7 +110,7 @@ local function split_cursor(direction) end for i = start, stop, direction do local v = new_cursors[i] - doc():add_selection(v[1], v[2]) + dv.doc:add_selection(v[1], v[2]) end core.blink_reset() end @@ -621,12 +624,12 @@ local commands = { end, ["doc:create-cursor-previous-line"] = function(dv) - split_cursor(-1) + split_cursor(dv, -1) dv.doc:merge_cursors() end, ["doc:create-cursor-next-line"] = function(dv) - split_cursor(1) + split_cursor(dv, 1) dv.doc:merge_cursors() end