A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/sig.rs')
-rw-r--r--src/sig.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sig.rs b/src/sig.rs
index 427e37e..a70d014 100644
--- a/src/sig.rs
+++ b/src/sig.rs
@@ -1,14 +1,14 @@
-use std::iter::{repeat, repeat_n};
+use std::iter::repeat_n;
use dsb::Cell;
use dsb::cell::Style;
use lsp_types::{
- MarkupContent, MarkupKind, ParameterInformation, SignatureHelp,
+ MarkupContent, ParameterInformation, SignatureHelp,
SignatureInformation,
};
use crate::FG;
-use crate::text::{CellBuffer, color, color_};
+use crate::text::{CellBuffer, color_};
pub fn active(
sig: &SignatureHelp,
) -> (&SignatureInformation, Option<&ParameterInformation>) {