aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorPhilipp Mildenberger2023-03-13 14:01:11 +0000
committerPhilipp Mildenberger2023-05-18 19:48:32 +0000
commit74e21e1b250be884242596cbd7d98b098bb0fd0c (patch)
tree410f5ae73526d9231eae6e54744932e91ff42cde /helix-term
parent7d4f7eb4bda6e507e253cb276ccce254fdd51575 (diff)
Fix some lints/docgen hints
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/health.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/helix-term/src/health.rs b/helix-term/src/health.rs
index 031f982c..6b9f8517 100644
--- a/helix-term/src/health.rs
+++ b/helix-term/src/health.rs
@@ -2,10 +2,7 @@ use crossterm::{
style::{Color, Print, Stylize},
tty::IsTty,
};
-use helix_core::{
- config::{default_syntax_loader, user_syntax_loader},
- syntax::LanguageServerFeatureConfiguration,
-};
+use helix_core::config::{default_syntax_loader, user_syntax_loader};
use helix_loader::grammar::load_runtime_file;
use helix_view::clipboard::get_clipboard_provider;
use std::io::Write;