diff options
author | Nathan Vegdahl | 2021-07-01 17:41:20 +0000 |
---|---|---|
committer | Nathan Vegdahl | 2021-07-02 02:06:52 +0000 |
commit | 702a0491db0fef8ee15cd6fcff3138812da2c2aa (patch) | |
tree | 42a1194f0b43465ca1125c0c2209a75b0b158389 /helix-term/src/compositor.rs | |
parent | 79f096963c75d107cd1f415666fb21a9cfd3cbd6 (diff) |
Remove #[allow(unused)] from helix-term, and fix unused imports.
Lots of other warning still left. Will address in subsequent commits.
Diffstat (limited to 'helix-term/src/compositor.rs')
-rw-r--r-- | helix-term/src/compositor.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs index ba8c4bc7..46da04be 100644 --- a/helix-term/src/compositor.rs +++ b/helix-term/src/compositor.rs @@ -2,7 +2,6 @@ // Q: how does this work with popups? // cursive does compositor.screen_mut().add_layer_at(pos::absolute(x, y), <component>) use helix_core::Position; -use helix_lsp::LspProgressMap; use helix_view::graphics::{CursorKind, Rect}; use crossterm::event::Event; |