Fix overlapping in incline statusbars diagnostic section
This commit is contained in:
parent
061fbf36dc
commit
761f6e3e59
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ return {
|
||||||
local n = #vim.diagnostic.get(props.buf,
|
local n = #vim.diagnostic.get(props.buf,
|
||||||
{ severity = vim.diagnostic.severity[string.upper(severity)] })
|
{ severity = vim.diagnostic.severity[string.upper(severity)] })
|
||||||
if n > 0 then
|
if n > 0 then
|
||||||
table.insert(label, { icon .. n .. " ", group = "DiagnosticSign" .. severity })
|
table.insert(label, { icon .. " " .. n .. " ", group = "DiagnosticSign" .. severity })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if #label > 0 then
|
if #label > 0 then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue