aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-11-06 14:52:49 +0000
committerBlaž Hrastnik2021-11-06 14:52:49 +0000
commit2c1313c0648977540c395de584b4293c1909cbf7 (patch)
tree3f098025c07f1e056a6d7bd40477233726e23206 /helix-term
parent1a1685acf7fe9836b235dbc73361344d9330800c (diff)
Specify vector capacity on surround_add
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index f2a1e66d..80cbd6d2 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -4698,7 +4698,7 @@ fn surround_add(cx: &mut Context) {
let selection = doc.selection(view.id);
let (open, close) = surround::get_pair(ch);
- let mut changes = Vec::new();
+ let mut changes = Vec::with_capacity(selection.len() * 2);
for range in selection.iter() {
changes.push((range.from(), range.from(), Some(Tendril::from_char(open))));
changes.push((range.to(), range.to(), Some(Tendril::from_char(close))));