fix(lsp): ensure we only highlight diagnostics for lsp with the feature enabled (#8551)

This commit is contained in:
Yomain 2023-10-17 12:07:00 +02:00 committed by GitHub
parent d9d7f67898
commit cd591647ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -365,7 +365,7 @@ pub fn doc_diagnostics_highlights(
let mut warning_vec = Vec::new();
let mut error_vec = Vec::new();
for diagnostic in doc.diagnostics() {
for diagnostic in doc.shown_diagnostics() {
// Separate diagnostics into different Vecs by severity.
let (vec, scope) = match diagnostic.severity {
Some(Severity::Info) => (&mut info_vec, info),