diff options
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>, } |