aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-11-07 09:12:30 +0000
committerBlaž Hrastnik2021-11-07 09:13:37 +0000
commit5938ab1bf1220913f487155ba7e1d9057d03f73e (patch)
tree317472c201cec59ff054bde164d56923bfab5288 /helix-view
parent3b8d5102acfcd2aeacb7d8c88eaaf51f5be0cc7b (diff)
dap: Fully extract template parameter prompts
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/editor.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index ac234524..40c65c4c 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -24,7 +24,7 @@ use anyhow::Error;
pub use helix_core::diagnostic::Severity;
pub use helix_core::register::Registers;
-use helix_core::syntax::{self, DebugConfigCompletion};
+use helix_core::syntax;
use helix_core::Position;
use helix_dap as dap;
@@ -126,7 +126,6 @@ pub struct Editor {
pub debugger: Option<dap::Client>,
pub debugger_events: SelectAll<UnboundedReceiverStream<dap::Payload>>,
pub breakpoints: HashMap<PathBuf, Vec<dap::SourceBreakpoint>>,
- pub debug_config_completions: Vec<DebugConfigCompletion>,
pub clipboard_provider: Box<dyn ClipboardProvider>,
@@ -172,7 +171,6 @@ impl Editor {
debugger: None,
debugger_events: SelectAll::new(),
breakpoints: HashMap::new(),
- debug_config_completions: Vec::new(),
syn_loader: config_loader,
theme_loader: themes,
registers: Registers::default(),