diff options
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/editor.rs | 4 |
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(), |