diff options
author | Blaž Hrastnik | 2021-12-03 02:59:44 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-12-03 02:59:44 +0000 |
commit | 2dbf966293c7a92bd5eb6062c7033a20a207609f (patch) | |
tree | f0cbf36d0e69085ad0be083406d4ff0f0fca7c80 /helix-core/src | |
parent | 0d73a4d23abf7b14321ec4db39a272372f923ad3 (diff) |
dap: Start working on runInTerminal support
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/syntax.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index f136ecd0..f1c399d2 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -114,6 +114,7 @@ pub enum DebugConfigCompletion { pub enum DebugArgumentValue { String(String), Array(Vec<String>), + Boolean(bool), } #[derive(Debug, PartialEq, Clone, Deserialize, Serialize)] |