In the status bar, show the diagnostic under the cursor

This commit is contained in:
Max Brunsfeld 2021-11-03 12:33:16 -07:00
parent 941d935c4a
commit 8b5089c759
5 changed files with 95 additions and 3 deletions

View file

@ -95,6 +95,10 @@ pub struct StatusBar {
pub container: ContainerStyle,
pub height: f32,
pub cursor_position: TextStyle,
pub diagnostic_error: TextStyle,
pub diagnostic_warning: TextStyle,
pub diagnostic_information: TextStyle,
pub diagnostic_hint: TextStyle,
}
#[derive(Deserialize, Default)]