aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorPhilipp Mildenberger2023-03-18 16:00:57 +0000
committerPhilipp Mildenberger2023-05-18 19:48:32 +0000
commit0637691eb1fb7e2055fc04a0209be94906c2bd1a (patch)
tree3b3e83c183fa6c9a1f8607c12f1af92ba032f236 /helix-term
parentdd2f74794a2ba6c45693d218079349d27828caec (diff)
Use DoubleEndedIterator instead of collect to Vec for reversing
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 27f289f0..14a68490 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -3076,8 +3076,6 @@ fn goto_prev_diag(cx: &mut Context) {
let diag = doc
.shown_diagnostics()
- .collect::<Vec<_>>()
- .into_iter()
.rev()
.find(|diag| diag.range.start < cursor_pos)
.or_else(|| doc.shown_diagnostics().last());