fix(nvim-0.6): wrong color group for warning sign (#792)
This commit is contained in:
@@ -119,7 +119,7 @@ end
|
|||||||
local has_06 = vim.fn.has('nvim-0.6') == 1
|
local has_06 = vim.fn.has('nvim-0.6') == 1
|
||||||
local links = {
|
local links = {
|
||||||
NvimTreeLspDiagnosticsError = has_06 and "DiagnosticError" or "LspDiagnosticsDefaultError",
|
NvimTreeLspDiagnosticsError = has_06 and "DiagnosticError" or "LspDiagnosticsDefaultError",
|
||||||
NvimTreeLspDiagnosticsWarning = has_06 and "DiagnosticWarning" or "LspDiagnosticsDefaultWarning",
|
NvimTreeLspDiagnosticsWarning = has_06 and "DiagnosticWarn" or "LspDiagnosticsDefaultWarning",
|
||||||
NvimTreeLspDiagnosticsInformation = has_06 and "DiagnosticInfo" or "LspDiagnosticsDefaultInformation",
|
NvimTreeLspDiagnosticsInformation = has_06 and "DiagnosticInfo" or "LspDiagnosticsDefaultInformation",
|
||||||
NvimTreeLspDiagnosticsHint = has_06 and "DiagnosticHint" or "LspDiagnosticsDefaultHint",
|
NvimTreeLspDiagnosticsHint = has_06 and "DiagnosticHint" or "LspDiagnosticsDefaultHint",
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user