mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +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 contents = doc.text();
|
||||
let selection = doc.selection(view.id).clone();
|
||||
let selection = doc.selection(view.id);
|
||||
let mut ranges = SmallVec::with_capacity(selection.len());
|
||||
|
||||
// TODO: this is annoying, but we need to do it to properly calculate pos after edits
|
||||
|
@ -4000,7 +4000,7 @@ pub mod insert {
|
|||
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.
|
||||
let mut chars_deleted = 0;
|
||||
let pos = range.cursor(text);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue