From 8be448d3881909fb0ce4b033cad71aa7575de0aa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 21:55:48 +0200 Subject: Adding upstream version 2023.0.0. Signed-off-by: Daniel Baumann --- .vscode/launch.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..095615f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,35 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Run Generator", + "type": "python", + "request": "launch", + "module": "generator", + "console": "integratedTerminal", + "justMyCode": true, + "args": ["--plugin", "${input:plugin}"] + }, + { + "name": "DON'T SELECT (test debug config)", + "type": "python", + "request": "launch", + "console": "integratedTerminal", + "justMyCode": false, + "purpose": ["debug-test"], + "presentation": { + "hidden": true, + "group": "", + "order": 4 + } + } + ], + "inputs": [ + { + "id": "plugin", + "type": "pickString", + "description": "Select a plugin to debug", + "options": ["python", "rust", "dotnet", "testdata"] + } + ] +} -- cgit v1.2.3