diff --git a/helix-core/src/commands.rs b/helix-core/src/commands.rs index 3bebd7b46..8dc817da8 100644 --- a/helix-core/src/commands.rs +++ b/helix-core/src/commands.rs @@ -155,7 +155,7 @@ pub fn open_below(state: &mut State, _count: usize) { 0, ); - let transaction = Transaction::change(state, changes.collect()).with_selection(selection); + let transaction = Transaction::change(state, changes).with_selection(selection); transaction.apply(state); // TODO: need to store into history if successful diff --git a/helix-core/src/transaction.rs b/helix-core/src/transaction.rs index 12ed523e4..4ecc575a8 100644 --- a/helix-core/src/transaction.rs +++ b/helix-core/src/transaction.rs @@ -353,8 +353,10 @@ pub fn with_selection(mut self, selection: Selection) -> Self { } /// Generate a transaction from a set of changes. - // TODO: take an owned iter instead of Vec - pub fn change(state: &State, changes: Vec) -> Self { + pub fn change(state: &State, changes: I) -> Self + where + I: IntoIterator + ExactSizeIterator, + { let len = state.doc.len_chars(); let mut acc = Vec::with_capacity(2 * changes.len() + 1); @@ -381,7 +383,7 @@ pub fn change_by_selection(state: &State, f: F) -> Self where F: Fn(&SelectionRange) -> Change, { - Self::change(state, state.selection.ranges.iter().map(f).collect()) + Self::change(state, state.selection.ranges.iter().map(f)) } /// Insert text at each selection head.