From f63525d0fdedbd4bc195fec0fe26cf961f4af9e3 Mon Sep 17 00:00:00 2001 From: cc <57621900+ccteaher@users.noreply.github.com> Date: Wed, 7 Aug 2024 16:51:57 +0800 Subject: [PATCH] Update launch.json --- .vscode/launch.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8b13789..e05d173 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1 +1,26 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Attach", + "type": "python", + "request": "attach", + "connect": { + "host": "localhost", + "port": 5678 + } + }, + { + "name": "Python: 当前文件", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "justMyCode": true + } + ] +}