diff options
| author | David Czihak <git@dcz.at> | 2026-05-07 18:12:39 +0200 |
|---|---|---|
| committer | David Czihak <git@dcz.at> | 2026-05-07 18:12:39 +0200 |
| commit | 384a44bd1189119326350996fcdff1cf4394a8cd (patch) | |
| tree | 489490657c3741396a47f8560f38114c5148e638 /extension.json | |
| parent | ae2337094ff86c544b1f8b45dca072a4d57957ab (diff) | |
Feat: Add LLDB log creation setting, improve logs
Diffstat (limited to 'extension.json')
| -rw-r--r-- | extension.json | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/extension.json b/extension.json index f9e76e9..a3302b1 100644 --- a/extension.json +++ b/extension.json @@ -19,7 +19,7 @@ ], "entitlements": { "process": true, - "filesystem": "readonly" + "filesystem": "readwrite" }, "debugAdapters": { "zig-lldb-dap": { @@ -88,6 +88,20 @@ "description": "Log ZLS traffic to the Extension Console while developing the extension." } ] + }, + { + "type": "section", + "title": "Debug Adapter", + "description": "Controls for the lldb-dap integration.", + "children": [ + { + "key": "at.dcz.nova-zig.debug-adapter.debug", + "title": "Enable Proxy Log", + "type": "boolean", + "default": false, + "description": "Write lldb-dap-proxy traffic to a log file in the extension's storage directory. For extension development only." + } + ] } ], "configWorkspace": [ @@ -143,6 +157,19 @@ "description": "Log ZLS traffic to the Extension Console while developing the extension." } ] + }, + { + "type": "section", + "title": "Debug Adapter", + "description": "Controls for the lldb-dap integration.", + "children": [ + { + "key": "at.dcz.nova-zig.debug-adapter.debug", + "title": "Enable Proxy Log", + "type": "boolean", + "description": "Write lldb-dap-proxy traffic to a log file in the extension's storage directory. For extension development only." + } + ] } ], "issueMatchers": { |
