diff options
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/editor.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 591e0492..4efadaf6 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -126,8 +126,7 @@ 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_picker: Option<Vec<String>>, - pub debug_config_completions: Option<Vec<Vec<DebugConfigCompletion>>>, + pub debug_config_completions: Vec<DebugConfigCompletion>, pub variables: Option<Vec<String>>, pub variables_page: usize, @@ -175,8 +174,7 @@ impl Editor { debugger: None, debugger_events: SelectAll::new(), breakpoints: HashMap::new(), - debug_config_picker: None, - debug_config_completions: None, + debug_config_completions: Vec::new(), variables: None, variables_page: 0, syn_loader: config_loader, |