corrected order returned by workspace diagnostic (#831)

This commit is contained in:
matthewsia98 2022-09-10 05:14:26 -04:00 committed by GitHub
parent 3cf45404d4
commit 2176d85f39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ M.sources = {
return workspace_diag(diag_severity.ERROR),
workspace_diag(diag_severity.WARN),
workspace_diag(diag_severity.HINT),
workspace_diag(diag_severity.INFO)
workspace_diag(diag_severity.INFO),
workspace_diag(diag_severity.HINT)
end,
nvim_diagnostic = function()
local diagnostics = vim.diagnostic.get(0)