diff options
author | Gaurav Tyagi | 2022-11-15 01:46:07 +0000 |
---|---|---|
committer | GitHub | 2022-11-15 01:46:07 +0000 |
commit | 91ff903bf3867f112d242d6ecbe0b417b900656f (patch) | |
tree | fcb49a3f319f969e8ee45752c6b9310ebe04ff22 /helix-view | |
parent | 1233c9a989f419315a9fc2ed0bc10f9338aa8322 (diff) |
Add global error/warning count statusline element (#4569)
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/editor.rs | 3 |
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, |