Eliminate an unnecessary clone in insert_newline

This commit is contained in:
Michael Davis 2025-01-17 10:23:36 -05:00
parent ffdfb59033
commit 4c41c5250c
No known key found for this signature in database

View file

@ -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);