diff options
author | Skyler Hawthorne | 2021-11-20 14:17:38 +0000 |
---|---|---|
committer | GitHub | 2021-11-20 14:17:38 +0000 |
commit | 05c6cb1d0b576547c14b204e0df543650c93892f (patch) | |
tree | 299ea3a5c7a418650ab7a718beaf916472e2b639 /helix-term/src | |
parent | a3a3b0b517d0e690f3efc66b17ac7b9f769dba9d (diff) |
Solarized theme: fix popup colors, adjust menu (#1124)
* fix popup colors, adjust menu
* fix hardcoded horizontal rule color
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/ui/markdown.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/helix-term/src/ui/markdown.rs b/helix-term/src/ui/markdown.rs index 61630d55..649703b5 100644 --- a/helix-term/src/ui/markdown.rs +++ b/helix-term/src/ui/markdown.rs @@ -55,7 +55,7 @@ fn parse<'a>( fn to_span(text: pulldown_cmark::CowStr) -> Span { use std::ops::Deref; Span::raw::<std::borrow::Cow<_>>(match text { - CowStr::Borrowed(s) => s.to_string().into(), // could retain borrow + CowStr::Borrowed(s) => s.into(), CowStr::Boxed(s) => s.to_string().into(), CowStr::Inlined(s) => s.deref().to_owned().into(), }) @@ -179,7 +179,9 @@ fn parse<'a>( spans.push(Span::raw(" ")); } Event::Rule => { - lines.push(Spans::from("---")); + let mut span = Span::raw("---"); + span.style = code_style; + lines.push(Spans::from(span)); lines.push(Spans::default()); } // TaskListMarker(bool) true if checked |