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:
Ray Elliott 2025-12-11 23:57:40 +00:00
parent bd89c05068
commit 3f4430eb82
1 changed files with 6 additions and 6 deletions

View File

@ -124,12 +124,12 @@ return {
QuickFixLine = { bg = c.bg_hl_special_weak, bold = true },
-- Diagnostic severity highlighting in quickfix/location list
-- These are custom syntax groups defined in autocmds.lua
qfError = { fg = c.diag_error, bold = true }, -- "error:" or "[E]"
qfWarning = { fg = c.diag_warn, bold = true }, -- "warning:" or "[W]"
qfInfo = { fg = c.diag_info, bold = true }, -- "info:" or "[I]"
qfHint = { fg = c.diag_hint, bold = true }, -- "hint:" or "[H]"
qfNote = { fg = c.diag_hint, bold = true }, -- "note:" (same as hint)
-- These are custom syntax groups defined in autocmds.lua (using matchadd)
qfError = { bg = c.bg_diag_error, fg = c.fg }, -- "error" word
qfWarning = { bg = c.bg_diag_warn, fg = c.fg }, -- "warning" word
qfInfo = { bg = c.bg_diag_info, fg = c.fg }, -- "info" word
qfHint = { bg = c.bg_diag_hint, fg = c.fg }, -- "hint" word
qfNote = { bg = c.bg_diag_hint, fg = c.fg }, -- "note" word (same as hint)
-- ============================================================================
-- Debug