diff options
author | Dmitry Sharshakov | 2021-08-29 07:23:36 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-29 07:23:36 +0000 |
commit | 2d42766a7118036dae4ca20f764f4909753a357d (patch) | |
tree | 57acce33b6cec400e34ada5dd28d69b0c5a70a71 /helix-dap/src | |
parent | af657ef2ec49b93acb26c344be28ee67cb0cae51 (diff) |
wip: refactor parameters in UI start
Diffstat (limited to 'helix-dap/src')
-rw-r--r-- | helix-dap/src/types.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs index d31b8023..7207f412 100644 --- a/helix-dap/src/types.rs +++ b/helix-dap/src/types.rs @@ -7,7 +7,7 @@ use std::{collections::HashMap, path::PathBuf}; pub struct DebugTemplate { pub name: String, pub request: String, - pub completion: Option<Vec<String>>, + pub completion: Vec<String>, pub args: HashMap<String, String>, } |