diff --git a/.vscode/launch.json b/.vscode/launch.json index 14415dad..9748712e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -27,6 +27,7 @@ "program": "app/main.py", "console": "integratedTerminal", "justMyCode": true, + "subProcess": true, "env": { "YTP_CONFIG_PATH": "${workspaceFolder}/var/config", "YTP_DOWNLOAD_PATH": "${workspaceFolder}/var/downloads", @@ -34,8 +35,6 @@ "PYDEVD_DISABLE_FILE_VALIDATION": "1", "YTP_IGNORE_UI": "true" }, - "subProcess": true, - "postDebugTask": "kill-debugpy" }, { "name": "Node: Generate UI", diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index ee6cc98f..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "kill-debugpy", - "type": "shell", - "command": "pkill -f debugpy || true", - "problemMatcher": [], - "presentation": { - "echo": false, - "reveal": "never", - "focus": false, - "panel": "dedicated", - "showReuseMessage": false, - "clear": false - }, - "runOptions": { - "runOn": "folderOpen" - } - } - ] -}