however, looking at Telescope highlights for instances show this: DiagnosticUnderlineErrorxxx cterm=underline gui=underline
no guisp mentioned there.
Went a step deeper and debug-printed Group:apply:
function Group:apply()
...
if self.name == "diagnosticunderlineerror" then
print("name is: ", self.name, " hl: ", vim.inspect(hl))
print("key: ", vim.inspect(self.style:keys()))
end
and in-fact, guisp is missing there too!
name is: diagnosticunderlineerror hl: {
bg = "none",
fg = "none",
underline = true
}
Great tool btw! would be very cool to get this sorted :)
Hey, found out that
guisp
is broken / not applied to the hl group. For example. I'll define something like this:however, looking at Telescope highlights for instances show this:
DiagnosticUnderlineErrorxxx cterm=underline gui=underline
no guisp mentioned there.Went a step deeper and debug-printed
Group:apply
:and in-fact, guisp is missing there too!
Great tool btw! would be very cool to get this sorted :)