diff options
author | Dmitry Sharshakov | 2021-08-28 11:23:54 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-28 11:23:54 +0000 |
commit | 8df6739759396b45d06356dd78c39117590b062b (patch) | |
tree | 605369d7ca24fab5d26e62171737776c5cf8e9dd /helix-view | |
parent | 5e4da09be264c2d6c16837a5ce81d99f69a584d6 (diff) |
New way of starting debug sessions
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/editor.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index faaa5c3a..c1b9cf1a 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -76,6 +76,7 @@ pub struct Editor { pub debugger: Option<helix_dap::Client>, pub debugger_events: SelectAll<UnboundedReceiverStream<helix_dap::Payload>>, + pub debug_config_picker: Option<Vec<String>>, pub variables: Option<Vec<String>>, pub variables_page: usize, @@ -118,6 +119,7 @@ impl Editor { language_servers, debugger: None, debugger_events: SelectAll::new(), + debug_config_picker: None, variables: None, variables_page: 0, syn_loader: config_loader, |