From 0add0c563903356280af8e82aefa687c2c626ebe Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Sun, 5 Sep 2021 15:12:13 +0300 Subject: [PATCH] Make conditional logpoints underlined --- helix-term/src/ui/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index e151611a..85b00481 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -505,7 +505,7 @@ impl EditorView { { let style = if breakpoint.condition.is_some() && breakpoint.log_message.is_some() { - error.add_modifier(Modifier::CROSSED_OUT) + error.add_modifier(Modifier::UNDERLINED) } else if breakpoint.condition.is_some() { error } else if breakpoint.log_message.is_some() {