Skip to content

Commit

Permalink
fix(helix): fix markup broken generated values (#560)
Browse files Browse the repository at this point in the history
* helix: fix markup broken generated values

Fixes #558

* helix: remove extra "

"nil" → nil
  • Loading branch information
AbeEstrada authored Jul 3, 2024
1 parent c16eaeb commit 8ba07a0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lua/tokyonight/extra/helix.lua
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function M.generate(colors)
hover = "PmenuSel",
},
list = {
"markdownHeadingDelimiter",
"@markup.list",
unnumbered = nil,
numbered = nil,
checked = nil,
Expand All @@ -129,16 +129,16 @@ function M.generate(colors)
modifiers = { "crossed_out" },
},
link = {
"markdownLinkText",
url = "Underlined",
label = "markdownCode",
text = "markdownCode",
"@markup.link",
url = "@markup.link.url",
label = "@markup.link.label",
text = "@markup.link",
},
quote = nil,
raw = {
"markdownCode",
"@markup.raw",
inline = "@markup.raw.markdown_inline",
block = "markdownCodeBlock",
block = nil,
-- UI --
completion = nil,
hover = nil,
Expand Down

0 comments on commit 8ba07a0

Please sign in to comment.