From a4da4d6c90c409fe094b1f3923b58e70e04f3379 Mon Sep 17 00:00:00 2001 From: tensionlove <120292808+tensionlove@users.noreply.github.com> Date: Wed, 1 Feb 2023 21:09:27 -0800 Subject: [PATCH] launch --- .vscode/launch.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..94ae4a1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "cobol", + "request": "launch", + "name": "COBOL (native): Launch", + "program": "${workspaceFolder}/", + "cwd": "${workspaceFolder}", + "stopOnEntry": true + }, + { + "type": "cobol", + "request": "attach", + "name": "COBOL (native): Attach to process", + "processId": "${command:pickProcess}" + } + ] +} \ No newline at end of file