Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/commands/lsp.rs')
| -rw-r--r-- | helix-term/src/commands/lsp.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/helix-term/src/commands/lsp.rs b/helix-term/src/commands/lsp.rs index 90a1ad7f..3fafb03e 100644 --- a/helix-term/src/commands/lsp.rs +++ b/helix-term/src/commands/lsp.rs @@ -9,10 +9,8 @@ use super::{align_view, push_jump, Align, Context, Editor}; use helix_core::Selection; use helix_view::editor::Action; -use crate::{ - compositor::{self, Compositor}, - ui::{self, overlay::overlayed, FileLocation, FilePicker, Popup, PromptEvent}, -}; +use crate::ui::{self, overlay::overlayed, FileLocation, FilePicker, Popup, PromptEvent}; +use helix_view::compositor::{self, Compositor}; use std::borrow::Cow; |