Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/commands/dap.rs')
| -rw-r--r-- | helix-term/src/commands/dap.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs index b897b2d5..2ef8b5ff 100644 --- a/helix-term/src/commands/dap.rs +++ b/helix-term/src/commands/dap.rs @@ -1,13 +1,13 @@ use super::{Context, Editor}; -use crate::{ - compositor::{self, Compositor}, - job::{Callback, Jobs}, - ui::{self, overlay::overlayed, FilePicker, Picker, Popup, Prompt, PromptEvent, Text}, -}; +use crate::ui::{self, overlay::overlayed, FilePicker, Picker, Popup, Prompt, PromptEvent, Text}; use helix_core::syntax::{DebugArgumentValue, DebugConfigCompletion}; use helix_dap::{self as dap, Client}; use helix_lsp::block_on; use helix_view::editor::Breakpoint; +use helix_view::{ + compositor::{self, Compositor}, + job::{Callback, Jobs}, +}; use serde_json::{to_value, Value}; use tokio_stream::wrappers::UnboundedReceiverStream; |