aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/commands.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-core/src/commands.rs')
-rw-r--r--helix-core/src/commands.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/commands.rs b/helix-core/src/commands.rs
index 3bebd7b4..8dc817da 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