From d3b3f263169b05db1ea49c390b30b7f67362f9f1 Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Wed, 9 Jun 2021 17:59:19 -0400 Subject: [PATCH] Added in cursor merging behaviour. --- data/core/doc/init.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/data/core/doc/init.lua b/data/core/doc/init.lua index ef9e1f2e..4c326f95 100644 --- a/data/core/doc/init.lua +++ b/data/core/doc/init.lua @@ -121,6 +121,18 @@ function Doc:set_selection(line1, col1, line2, col2, swap) self.cursor_clipboard = {} end +function Doc:merge_cursors(idx) + for i = (idx or (#self.selections - 3)), (idx or 5), -4 do + for j = 1, i - 4, 4 do + if self.selections[i] == self.selections[j] and + self.selections[i+1] == self.selections[j+1] then + common.splice(self.selections, i, 4) + break + end + end + end +end + local function sort_positions(line1, col1, line2, col2) if line1 > line2 or line1 == line2 and col1 > col2 then return line2, col2, line1, col1 @@ -383,6 +395,7 @@ function Doc:delete_to_cursor(idx, ...) self:set_selections(sidx, line1, col1) end end + self:merge_cursors(idx) end function Doc:delete_to(...) return self:delete_to(nil, ...) end @@ -392,6 +405,7 @@ function Doc:move_to_cursor(idx, ...) self:set_selections(sidx, self:position_offset(line, col, ...)) end end + self:merge_cursors(idx) end function Doc:move_to(...) return self:move_to_cursor(nil, ...) end @@ -403,6 +417,7 @@ function Doc:select_to_cursor(idx, ...) self:set_selections(sidx, line, col, line2, col2) end end + self:merge_cursors(idx) end function Doc:select_to(...) return self:select_to_cursor(nil, ...) end