diff options
Diffstat (limited to 'helix-term/src/ui/editor.rs')
-rw-r--r-- | helix-term/src/ui/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 074f322e..20f6fdc7 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -465,7 +465,7 @@ impl EditorView { let selected = cursors.contains(&line); - if let Some(breakpoint) = breakpoints.and_then(|breakpoints| { + if let Some(_breakpoint) = breakpoints.and_then(|breakpoints| { breakpoints .iter() .find(|breakpoint| breakpoint.line == line) |