refactor(statusline): add hint and info for non-workspace statusline

This commit is contained in:
Rolo 2025-04-02 21:13:32 -07:00
parent 7ebf650029
commit c1cbf44d52

View file

@ -226,20 +226,40 @@ fn render_diagnostics<F>(context: &mut RenderContext, write: F)
where where
F: Fn(&mut RenderContext, String, Option<Style>) + Copy, F: Fn(&mut RenderContext, String, Option<Style>) + Copy,
{ {
let (warnings, errors) = context let (hints, info, warnings, errors) =
context
.doc .doc
.diagnostics() .diagnostics()
.iter() .iter()
.fold((0, 0), |mut counts, diag| { .fold((0, 0, 0, 0), |mut counts, diag| {
use helix_core::diagnostic::Severity; use helix_core::diagnostic::Severity;
match diag.severity { match diag.severity {
Some(Severity::Warning) => counts.0 += 1, Some(Severity::Hint) | None => counts.0 += 1,
Some(Severity::Error) | None => counts.1 += 1, Some(Severity::Info) => counts.1 += 1,
_ => {} Some(Severity::Warning) => counts.2 += 1,
Some(Severity::Error) => counts.3 += 1,
} }
counts counts
}); });
if info > 0 {
write(
context,
"".to_string(),
Some(context.editor.theme.get("info")),
);
write(context, format!(" {} ", info), None);
}
if hints > 0 {
write(
context,
"".to_string(),
Some(context.editor.theme.get("hint")),
);
write(context, format!(" {} ", hints), None);
}
if warnings > 0 { if warnings > 0 {
write( write(
context, context,
@ -272,7 +292,7 @@ where
.fold((0, 0), |mut counts, (diag, _)| { .fold((0, 0), |mut counts, (diag, _)| {
match diag.severity { match diag.severity {
Some(DiagnosticSeverity::WARNING) => counts.0 += 1, Some(DiagnosticSeverity::WARNING) => counts.0 += 1,
Some(DiagnosticSeverity::ERROR) | None => counts.1 += 1, Some(DiagnosticSeverity::ERROR) => counts.1 += 1,
_ => {} _ => {}
} }
counts counts