aboutsummaryrefslogtreecommitdiff
path: root/helix-dap
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-dap
parentef155e62ef411425c027a81c44cc76b5258ad48f (diff)
Customized completion for template parameters
Diffstat (limited to 'helix-dap')
-rw-r--r--helix-dap/src/types.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs
index 03f22e4d..d31b8023 100644
--- a/helix-dap/src/types.rs
+++ b/helix-dap/src/types.rs
@@ -7,6 +7,7 @@ use std::{collections::HashMap, path::PathBuf};
pub struct DebugTemplate {
pub name: String,
pub request: String,
+ pub completion: Option<Vec<String>>,
pub args: HashMap<String, String>,
}