Fixed cursors moving around with removal and inserts with cursors. Also fixed drawing line highlights with multicursors.
This commit is contained in:
parent
58f4963ade
commit
bbe4e21f52
|
@ -309,6 +309,7 @@ end
|
||||||
function Doc:raw_insert(line, col, text, undo_stack, time)
|
function Doc:raw_insert(line, col, text, undo_stack, time)
|
||||||
-- split text into lines and merge with line at insertion point
|
-- split text into lines and merge with line at insertion point
|
||||||
local lines = split_lines(text)
|
local lines = split_lines(text)
|
||||||
|
local len = #lines[#lines]
|
||||||
local before = self.lines[line]:sub(1, col - 1)
|
local before = self.lines[line]:sub(1, col - 1)
|
||||||
local after = self.lines[line]:sub(col)
|
local after = self.lines[line]:sub(col)
|
||||||
for i = 1, #lines - 1 do
|
for i = 1, #lines - 1 do
|
||||||
|
@ -325,6 +326,15 @@ function Doc:raw_insert(line, col, text, undo_stack, time)
|
||||||
push_undo(undo_stack, time, "selection", unpack(self.selections))
|
push_undo(undo_stack, time, "selection", unpack(self.selections))
|
||||||
push_undo(undo_stack, time, "remove", line, col, line2, col2)
|
push_undo(undo_stack, time, "remove", line, col, line2, col2)
|
||||||
|
|
||||||
|
-- keep cursors where they should be
|
||||||
|
for idx, cline1, ccol1, cline2, ccol2 in self:get_selections(true) do
|
||||||
|
if cline1 >= line then
|
||||||
|
local line_addition = line > cline1 or ccol1 > col and #lines - 1 or 0
|
||||||
|
local column_addition = line == cline1 and ccol1 > col and len or 0
|
||||||
|
self:set_selections(idx, cline1 + line_addition, ccol1 + column_addition, cline2 + line_addition, ccol2 + column_addition)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- update highlighter and assure selection is in bounds
|
-- update highlighter and assure selection is in bounds
|
||||||
self.highlighter:invalidate(line)
|
self.highlighter:invalidate(line)
|
||||||
self:sanitize_selection()
|
self:sanitize_selection()
|
||||||
|
@ -344,6 +354,15 @@ function Doc:raw_remove(line1, col1, line2, col2, undo_stack, time)
|
||||||
-- splice line into line array
|
-- splice line into line array
|
||||||
common.splice(self.lines, line1, line2 - line1 + 1, { before .. after })
|
common.splice(self.lines, line1, line2 - line1 + 1, { before .. after })
|
||||||
|
|
||||||
|
-- move all cursors back if they share a line with the removed text
|
||||||
|
for idx, cline1, ccol1, cline2, ccol2 in self:get_selections(true) do
|
||||||
|
if cline1 >= line2 then
|
||||||
|
local line_removal = line2 - line1
|
||||||
|
local column_removal = line2 == cline2 and col2 < ccol1 and (line2 == line1 and col2 - col1 or col2) or 0
|
||||||
|
self:set_selections(idx, cline1 - line_removal, ccol1 - column_removal, cline2 - line_removal, ccol2 - column_removal)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- update highlighter and assure selection is in bounds
|
-- update highlighter and assure selection is in bounds
|
||||||
self.highlighter:invalidate(line1)
|
self.highlighter:invalidate(line1)
|
||||||
self:sanitize_selection()
|
self:sanitize_selection()
|
||||||
|
|
|
@ -366,16 +366,20 @@ function DocView:draw_line_body(idx, x, y)
|
||||||
local x1 = x + self:get_col_x_offset(idx, col1)
|
local x1 = x + self:get_col_x_offset(idx, col1)
|
||||||
local x2 = x + self:get_col_x_offset(idx, col2)
|
local x2 = x + self:get_col_x_offset(idx, col2)
|
||||||
local lh = self:get_line_height()
|
local lh = self:get_line_height()
|
||||||
|
if x1 ~= x2 then
|
||||||
renderer.draw_rect(x1, y, x2 - x1, lh, style.selection)
|
renderer.draw_rect(x1, y, x2 - x1, lh, style.selection)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
local draw_highlight = nil
|
||||||
for lidx, line1, col1, line2, col2 in self.doc:get_selections(true) do
|
for lidx, line1, col1, line2, col2 in self.doc:get_selections(true) do
|
||||||
-- draw line highlight if caret is on this line
|
-- draw line highlight if caret is on this line
|
||||||
if config.highlight_current_line and (line1 == line2 and col1 == col2)
|
if draw_highlight ~= false and config.highlight_current_line
|
||||||
and line1 == idx and core.active_view == self then
|
and line1 == idx and core.active_view == self then
|
||||||
self:draw_line_highlight(x + self.scroll.x, y)
|
draw_highlight = (line1 == line2 and col1 == col2)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if draw_highlight then self:draw_line_highlight(x + self.scroll.x, y) end
|
||||||
|
|
||||||
-- draw line's text
|
-- draw line's text
|
||||||
self:draw_line_text(idx, x, y)
|
self:draw_line_text(idx, x, y)
|
||||||
|
|
Loading…
Reference in New Issue