mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Eliminate an unnecessary clone in insert_newline
This commit is contained in:
parent
ffdfb59033
commit
4c41c5250c
1 changed files with 2 additions and 2 deletions
|
@ -3986,7 +3986,7 @@ pub mod insert {
|
||||||
let line_ending = doc.line_ending.as_str();
|
let line_ending = doc.line_ending.as_str();
|
||||||
|
|
||||||
let contents = doc.text();
|
let contents = doc.text();
|
||||||
let selection = doc.selection(view.id).clone();
|
let selection = doc.selection(view.id);
|
||||||
let mut ranges = SmallVec::with_capacity(selection.len());
|
let mut ranges = SmallVec::with_capacity(selection.len());
|
||||||
|
|
||||||
// TODO: this is annoying, but we need to do it to properly calculate pos after edits
|
// TODO: this is annoying, but we need to do it to properly calculate pos after edits
|
||||||
|
@ -4000,7 +4000,7 @@ pub mod insert {
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut transaction = Transaction::change_by_selection(contents, &selection, |range| {
|
let mut transaction = Transaction::change_by_selection(contents, selection, |range| {
|
||||||
// Tracks the number of trailing whitespace characters deleted by this selection.
|
// Tracks the number of trailing whitespace characters deleted by this selection.
|
||||||
let mut chars_deleted = 0;
|
let mut chars_deleted = 0;
|
||||||
let pos = range.cursor(text);
|
let pos = range.cursor(text);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue