aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/editor.rs
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-20 13:48:59 +0000
committerDmitry Sharshakov2021-08-20 13:48:59 +0000
commitc4970c617ed5f03dadce2a284b66539bf0ce3054 (patch)
tree7565b51c56e3a6ccb7e0700e2fa3859e263bdd3b /helix-term/src/ui/editor.rs
parenta54b09e3fe6eaf72ab7a4f3664efc0b8b7cf13fd (diff)
make CI green
Diffstat (limited to 'helix-term/src/ui/editor.rs')
-rw-r--r--helix-term/src/ui/editor.rs2
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)