mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
refactor(statusline): add hint and info for non-workspace statusline
This commit is contained in:
parent
7ebf650029
commit
c1cbf44d52
1 changed files with 34 additions and 14 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue