diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index fc3c2561..c285fd41 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -829,7 +829,7 @@ pub fn append_mode(cx: &mut Context) { if selection.iter().any(|range| range.head == end) { let transaction = Transaction::change( doc.text(), - vec![(end, end, Some(Tendril::from_char('\n')))].into_iter(), + std::array::IntoIter::new([(end, end, Some(Tendril::from_char('\n')))]), ); doc.apply(&transaction, view.id); }