diff options
author | Dmitry Sharshakov | 2021-09-05 12:12:13 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-09-05 12:12:13 +0000 |
commit | 0add0c563903356280af8e82aefa687c2c626ebe (patch) | |
tree | 67cfc6eed6e0c464892620f2dc671f9e048d5c4b /helix-term | |
parent | 2d35b7b99cc903bc254e9e98979b7638c16d0e7a (diff) |
Make conditional logpoints underlined
Diffstat (limited to 'helix-term')
-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 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() { |