From 2bfa45e64d2c642e08744af3b49c068e9b75a7eb Mon Sep 17 00:00:00 2001 From: arabcoders Date: Sat, 2 Aug 2025 15:56:22 +0300 Subject: [PATCH] vscode luncher updates --- .vscode/launch.json | 3 +-- .vscode/tasks.json | 22 ---------------------- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 .vscode/tasks.json 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" - } - } - ] -}