From 15619554ed6cb080b207502cefb5806cb53a09f3 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Wed, 27 Mar 2024 01:34:47 -0400 Subject: [PATCH] Fix rustc warnings about unused 'pub use's (#10011) --- helix-term/src/handlers.rs | 1 - helix-term/src/lib.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/helix-term/src/handlers.rs b/helix-term/src/handlers.rs index ef5369f8505e..1b7d9b8c0b92 100644 --- a/helix-term/src/handlers.rs +++ b/helix-term/src/handlers.rs @@ -9,7 +9,6 @@ use crate::handlers::completion::CompletionHandler; use crate::handlers::signature_help::SignatureHelpHandler; pub use completion::trigger_auto_completion; -pub use helix_view::handlers::lsp::SignatureHelpInvoked; pub use helix_view::handlers::Handlers; mod completion; diff --git a/helix-term/src/lib.rs b/helix-term/src/lib.rs index 8b7919951813..7719a6965548 100644 --- a/helix-term/src/lib.rs +++ b/helix-term/src/lib.rs @@ -20,8 +20,6 @@ mod handlers; use ignore::DirEntry; use url::Url; -pub use keymap::macros::*; - #[cfg(windows)] fn true_color() -> bool { true