Specify capacity on toggle_line_comments

This commit is contained in:
Blaž Hrastnik 2021-11-06 23:57:42 +09:00
parent 2c1313c064
commit f979bdc442

View File

@ -63,7 +63,7 @@ pub fn toggle_line_comments(doc: &Rope, selection: &Selection, token: Option<&st
let token = token.unwrap_or("//");
let comment = Tendril::from(format!("{} ", token));
let mut lines: Vec<usize> = Vec::new();
let mut lines: Vec<usize> = Vec::with_capacity(selection.len());
let mut min_next_line = 0;
for selection in selection {