From 9748230745b041ea39b018f646ebc0ef7f806b2b Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Tue, 4 Nov 2025 07:55:34 +0100 Subject: [PATCH] Added a new debug configuration for debugging the current file. --- .vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3c38694..25f6472 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,6 +10,13 @@ "request": "launch", "program": "${workspaceFolder}/harvester.py", "console": "integratedTerminal" + }, + { + "name": "Python Debugger: Current File", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" } ] }