diff --git a/helix-term/src/ui/markdown.rs b/helix-term/src/ui/markdown.rs index 96614443f..fe581b5ad 100644 --- a/helix-term/src/ui/markdown.rs +++ b/helix-term/src/ui/markdown.rs @@ -132,6 +132,9 @@ pub struct Markdown { impl Markdown { const TEXT_STYLE: &'static str = "ui.text"; const BLOCK_STYLE: &'static str = "markup.raw.inline"; + const RULE_STYLE: &'static str = "punctuation.special"; + const UNNUMBERED_LIST_STYLE: &'static str = "markup.list.unnumbered"; + const NUMBERED_LIST_STYLE: &'static str = "markup.list.numbered"; const HEADING_STYLES: [&'static str; 6] = [ "markup.heading.1", "markup.heading.2", @@ -178,6 +181,9 @@ impl Markdown { let get_theme = |key: &str| -> Style { theme.map(|t| t.get(key)).unwrap_or_default() }; let text_style = get_theme(Self::TEXT_STYLE); let code_style = get_theme(Self::BLOCK_STYLE); + let numbered_list_style = get_theme(Self::NUMBERED_LIST_STYLE); + let unnumbered_list_style = get_theme(Self::UNNUMBERED_LIST_STYLE); + let rule_style = get_theme(Self::RULE_STYLE); let heading_styles: Vec