aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-28 16:11:19 +0000
committerDmitry Sharshakov2021-08-28 16:11:19 +0000
commit94901b867796459f8dc3c1479eb896547877d769 (patch)
tree0c8cb625ab61360cf103a37ec32894254b1d161f /helix-view
parentef155e62ef411425c027a81c44cc76b5258ad48f (diff)
Customized completion for template parameters
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/editor.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index c1b9cf1a..9644ba57 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -77,6 +77,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 debug_config_completions: Option<Vec<Option<Vec<String>>>>,
pub variables: Option<Vec<String>>,
pub variables_page: usize,
@@ -120,6 +121,7 @@ impl Editor {
debugger: None,
debugger_events: SelectAll::new(),
debug_config_picker: None,
+ debug_config_completions: None,
variables: None,
variables_page: 0,
syn_loader: config_loader,