From 5f5b383979b34817cbadbc7b686aec4e8e298e46 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Sat, 21 Aug 2021 14:35:53 +0300 Subject: Fix clippy warnings --- helix-term/src/ui/editor.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'helix-term/src/ui') diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index d48fc061..976323dd 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -450,7 +450,7 @@ impl EditorView { if let Some(debugger) = debugger { if let Some(path) = doc.path() { let dbg = block_on(debugger.lock()); - breakpoints = dbg.breakpoints.get(path).and_then(|bps| Some(bps.clone())); + breakpoints = dbg.breakpoints.get(path).cloned(); stack_pointer = dbg.stack_pointer.clone() } } @@ -475,7 +475,7 @@ impl EditorView { let selected = cursors.contains(&line); if let Some(bps) = breakpoints.as_ref() { - if let Some(_) = bps.iter().find(|breakpoint| breakpoint.line == line) { + if bps.iter().any(|breakpoint| breakpoint.line == line) { surface.set_stringn(viewport.x, viewport.y + i as u16, "▲", 1, warning); } } @@ -484,7 +484,7 @@ impl EditorView { if let Some(src) = sp.source.as_ref() { if doc .path() - .and_then(|path| Some(src.path == Some(path.clone()))) + .map(|path| src.path == Some(path.clone())) .unwrap_or(false) && sp.line == line { @@ -1045,7 +1045,7 @@ impl Component for EditorView { let loader = &cx.editor.syn_loader; let mut dbg: Option>> = None; if let Some(debugger) = &cx.editor.debugger { - dbg = Some(Arc::clone(&debugger)); + dbg = Some(Arc::clone(debugger)); } self.render_view( doc, -- cgit v1.2.3-70-g09d2