aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src
diff options
context:
space:
mode:
authorGaurav Tyagi2022-11-15 01:46:07 +0000
committerGitHub2022-11-15 01:46:07 +0000
commit91ff903bf3867f112d242d6ecbe0b417b900656f (patch)
treefcb49a3f319f969e8ee45752c6b9310ebe04ff22 /helix-view/src
parent1233c9a989f419315a9fc2ed0bc10f9338aa8322 (diff)
Add global error/warning count statusline element (#4569)
Diffstat (limited to 'helix-view/src')
-rw-r--r--helix-view/src/editor.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 213141ff..4e3a69a2 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -325,6 +325,9 @@ pub enum StatusLineElement {
/// A summary of the number of errors and warnings
Diagnostics,
+ /// A summary of the number of errors and warnings on file and workspace
+ WorkspaceDiagnostics,
+
/// The number of selections (cursors)
Selections,