From 91ff903bf3867f112d242d6ecbe0b417b900656f Mon Sep 17 00:00:00 2001 From: Gaurav Tyagi Date: Tue, 15 Nov 2022 07:16:07 +0530 Subject: [PATCH] Add global error/warning count statusline element (#4569) --- book/src/configuration.md | 1 + helix-term/src/ui/statusline.rs | 44 +++++++++++++++++++++++++++++++++ helix-view/src/editor.rs | 3 +++ 3 files changed, 48 insertions(+) diff --git a/book/src/configuration.md b/book/src/configuration.md index 8713c3ffe..e4854cda1 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -102,6 +102,7 @@ The following statusline elements can be configured: | `total-line-numbers` | The total line numbers of the opened file | | `file-type` | The type of the opened file | | `diagnostics` | The number of warnings and/or errors | +| `workspace-diagnostics` | The number of warnings and/or errors on workspace | | `selections` | The number of active selections | | `primary-selection-length` | The number of characters currently in primary selection | | `position` | The cursor position | diff --git a/helix-term/src/ui/statusline.rs b/helix-term/src/ui/statusline.rs index 47bb11290..6ea0570df 100644 --- a/helix-term/src/ui/statusline.rs +++ b/helix-term/src/ui/statusline.rs @@ -1,4 +1,5 @@ use helix_core::{coords_at_pos, encoding, Position}; +use helix_lsp::lsp::DiagnosticSeverity; use helix_view::{ document::{Mode, SCRATCH_BUFFER_NAME}, graphics::Rect, @@ -141,6 +142,7 @@ where helix_view::editor::StatusLineElement::FileLineEnding => render_file_line_ending, helix_view::editor::StatusLineElement::FileType => render_file_type, helix_view::editor::StatusLineElement::Diagnostics => render_diagnostics, + helix_view::editor::StatusLineElement::WorkspaceDiagnostics => render_workspace_diagnostics, helix_view::editor::StatusLineElement::Selections => render_selections, helix_view::editor::StatusLineElement::PrimarySelectionLength => { render_primary_selection_length @@ -245,6 +247,48 @@ where } } +fn render_workspace_diagnostics(context: &mut RenderContext, write: F) +where + F: Fn(&mut RenderContext, String, Option