Update diagnostic severity highlighting in quickfix list
Change background colors for diagnostic severity groups to improve visibility in quickfix and location lists.
This commit is contained in:
parent
bd89c05068
commit
3f4430eb82
|
|
@ -124,12 +124,12 @@ return {
|
||||||
QuickFixLine = { bg = c.bg_hl_special_weak, bold = true },
|
QuickFixLine = { bg = c.bg_hl_special_weak, bold = true },
|
||||||
|
|
||||||
-- Diagnostic severity highlighting in quickfix/location list
|
-- Diagnostic severity highlighting in quickfix/location list
|
||||||
-- These are custom syntax groups defined in autocmds.lua
|
-- These are custom syntax groups defined in autocmds.lua (using matchadd)
|
||||||
qfError = { fg = c.diag_error, bold = true }, -- "error:" or "[E]"
|
qfError = { bg = c.bg_diag_error, fg = c.fg }, -- "error" word
|
||||||
qfWarning = { fg = c.diag_warn, bold = true }, -- "warning:" or "[W]"
|
qfWarning = { bg = c.bg_diag_warn, fg = c.fg }, -- "warning" word
|
||||||
qfInfo = { fg = c.diag_info, bold = true }, -- "info:" or "[I]"
|
qfInfo = { bg = c.bg_diag_info, fg = c.fg }, -- "info" word
|
||||||
qfHint = { fg = c.diag_hint, bold = true }, -- "hint:" or "[H]"
|
qfHint = { bg = c.bg_diag_hint, fg = c.fg }, -- "hint" word
|
||||||
qfNote = { fg = c.diag_hint, bold = true }, -- "note:" (same as hint)
|
qfNote = { bg = c.bg_diag_hint, fg = c.fg }, -- "note" word (same as hint)
|
||||||
|
|
||||||
-- ============================================================================
|
-- ============================================================================
|
||||||
-- Debug
|
-- Debug
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue