diff options
author | Dmitry Sharshakov | 2021-08-28 16:11:19 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-28 16:11:19 +0000 |
commit | 94901b867796459f8dc3c1479eb896547877d769 (patch) | |
tree | 0c8cb625ab61360cf103a37ec32894254b1d161f /helix-dap | |
parent | ef155e62ef411425c027a81c44cc76b5258ad48f (diff) |
Customized completion for template parameters
Diffstat (limited to 'helix-dap')
-rw-r--r-- | helix-dap/src/types.rs | 1 |
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>, } |