gruvbox.nvim icon indicating copy to clipboard operation
gruvbox.nvim copied to clipboard

[BUG] Strikethrough markup not being highlighted/rendered with strikethrough

Open halleysfifthinc opened this issue 2 months ago • 0 comments

Describe the bug

  1. Strikethrough'ed text in e.g. markdown is not being highlighted with the strikethrough image

The issue is due to a typo (or an upstream change in the highlight name?) at lua/gruvbox.lua#L1017

    ["@markup.strike"] = { strikethrough = config.strikethrough },

where @markup.strike should be @markup.strikethrough. I can confirm that adding

      ["@markup.strikethrough"] = { strikethrough = true }

to overrides produces the desired behavior.

Expected behaviour

It should look like: image

Screenshots

No response

halleysfifthinc avatar Apr 30 '24 20:04 halleysfifthinc