refactor: use select_line_at_cursor to simplify cut_internal_vim
This commit is contained in:
parent
772e2e7d29
commit
e42f3ff3a5
1 changed files with 2 additions and 7 deletions
|
|
@ -2678,13 +2678,8 @@ pub const Editor = struct {
|
||||||
const primary = self.get_primary();
|
const primary = self.get_primary();
|
||||||
const b = self.buf_for_update() catch return;
|
const b = self.buf_for_update() catch return;
|
||||||
var root = b.root;
|
var root = b.root;
|
||||||
if (self.cursels.items.len == 1)
|
if (self.cursels.items.len == 1 and primary.selection == null)
|
||||||
if (primary.selection) |_| {} else {
|
try self.select_line_at_cursor(root, primary, .include_eol);
|
||||||
const sel = primary.enable_selection(root, self.metrics) catch return;
|
|
||||||
try move_cursor_begin(root, &sel.begin, self.metrics);
|
|
||||||
try move_cursor_end(root, &sel.end, self.metrics);
|
|
||||||
try move_cursor_right(root, &sel.end, self.metrics);
|
|
||||||
};
|
|
||||||
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
|
for (self.cursels.items) |*cursel_| if (cursel_.*) |*cursel| {
|
||||||
const cut_text, root = try self.cut_selection(root, cursel, tui.clipboard_allocator());
|
const cut_text, root = try self.cut_selection(root, cursel, tui.clipboard_allocator());
|
||||||
tui.clipboard_add_chunk(cut_text);
|
tui.clipboard_add_chunk(cut_text);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue