File tree Expand file tree Collapse file tree 4 files changed +19
-17
lines changed Expand file tree Collapse file tree 4 files changed +19
-17
lines changed Original file line number Diff line number Diff line change @@ -1538,12 +1538,12 @@ The table below shows all the highlight groups with their default link
15381538| RenderMarkdownH4 | @markup .heading.4.markdown | H4 icons |
15391539| RenderMarkdownH5 | @markup .heading.5.markdown | H5 icons |
15401540| RenderMarkdownH6 | @markup .heading.6.markdown | H6 icons |
1541- | RenderMarkdownH1Bg | DiffAdd | H1 background line |
1542- | RenderMarkdownH2Bg | DiffChange | H2 background line |
1543- | RenderMarkdownH3Bg | DiffDelete | H3 background line |
1541+ | RenderMarkdownH1Bg | DiffText | H1 background line |
1542+ | RenderMarkdownH2Bg | DiffAdd | H2 background line |
1543+ | RenderMarkdownH3Bg | DiffChange | H3 background line |
15441544| RenderMarkdownH4Bg | DiffDelete | H4 background line |
1545- | RenderMarkdownH5Bg | DiffDelete | H5 background line |
1546- | RenderMarkdownH6Bg | DiffDelete | H6 background line |
1545+ | RenderMarkdownH5Bg | Visual | H5 background line |
1546+ | RenderMarkdownH6Bg | CursorColumn | H6 background line |
15471547| RenderMarkdownCode | ColorColumn | Code block background |
15481548| RenderMarkdownCodeBorder | RenderMarkdownCode | Code border background |
15491549| RenderMarkdownCodeFallback | Normal | Fallback for code language |
Original file line number Diff line number Diff line change 1- *render-markdown.txt* For NVIM v0.11.1 Last change: 2025 May 19
1+ *render-markdown.txt* For NVIM v0.11.1 Last change: 2025 May 21
22
33==============================================================================
44Table of Contents *render-markdown-table-of-contents*
@@ -1586,17 +1586,17 @@ The table below shows all the highlight groups with their default link
15861586
15871587 RenderMarkdownH6 @markup.heading.6.markdown H6 icons
15881588
1589- RenderMarkdownH1Bg DiffAdd H1 background line
1589+ RenderMarkdownH1Bg DiffText H1 background line
15901590
1591- RenderMarkdownH2Bg DiffChange H2 background line
1591+ RenderMarkdownH2Bg DiffAdd H2 background line
15921592
1593- RenderMarkdownH3Bg DiffDelete H3 background line
1593+ RenderMarkdownH3Bg DiffChange H3 background line
15941594
15951595 RenderMarkdownH4Bg DiffDelete H4 background line
15961596
1597- RenderMarkdownH5Bg DiffDelete H5 background line
1597+ RenderMarkdownH5Bg Visual H5 background line
15981598
1599- RenderMarkdownH6Bg DiffDelete H6 background line
1599+ RenderMarkdownH6Bg CursorColumn H6 background line
16001600
16011601 RenderMarkdownCode ColorColumn Code block
16021602 background
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ local M = {}
55M .prefix = ' RenderMarkdown'
66
77-- stylua: ignore
8+ -- @see :h highlight-groups
9+ -- @see :h treesitter-highlight-groups
810--- @private
911--- @type table<string , string>
1012M .colors = {
@@ -15,12 +17,12 @@ M.colors = {
1517 H4 = ' @markup.heading.4.markdown' ,
1618 H5 = ' @markup.heading.5.markdown' ,
1719 H6 = ' @markup.heading.6.markdown' ,
18- H1Bg = ' DiffAdd ' ,
19- H2Bg = ' DiffChange ' ,
20- H3Bg = ' DiffDelete ' ,
20+ H1Bg = ' DiffText ' ,
21+ H2Bg = ' DiffAdd ' ,
22+ H3Bg = ' DiffChange ' ,
2123 H4Bg = ' DiffDelete' ,
22- H5Bg = ' DiffDelete ' ,
23- H6Bg = ' DiffDelete ' ,
24+ H5Bg = ' Visual ' ,
25+ H6Bg = ' CursorColumn ' ,
2426 -- Code
2527 Code = ' ColorColumn' ,
2628 CodeBorder = ' RenderMarkdownCode' ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ local state = require('render-markdown.state')
55local M = {}
66
77--- @private
8- M .version = ' 8.4.3 '
8+ M .version = ' 8.4.4 '
99
1010function M .check ()
1111 M .start (' version' )
You can’t perform that action at this time.
0 commit comments