From 8cdf47bac6e71c178878f07d2e1f2f84f94827aa Mon Sep 17 00:00:00 2001 From: hwf1324 <1398969445@qq.com> Date: Sun, 25 Jun 2023 19:46:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20.vscode\settings.json=20?= =?UTF-8?q?=E4=B8=AD=E5=AF=B9=20NVDA=20=E6=BA=90=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=9A=84=E8=B7=AF=E5=BE=84=E5=BC=95=E7=94=A8=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7c58677..7a8f755 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,9 +8,9 @@ "python.linting.flake8Enabled": true, "python.linting.pylintEnabled": false, "python.autoComplete.extraPaths": [ - "../nvda/source", - "../nvda/miscDeps/python" - ], + "${workspaceFolder}/../nvda/source", // NVDA 源代码应位于此工作区所在文件夹的父文件夹。 + "${workspaceFolder}/../nvda/miscDeps/python" + ], "files.insertFinalNewline": true, "files.trimFinalNewlines": true, "editor.insertSpaces": false, @@ -18,8 +18,8 @@ "reportUndefinedVariable": "none" }, "python.analysis.extraPaths": [ - "../nvda/source", - "../nvda/miscDeps/python" + "${workspaceFolder}/../nvda/source", + "${workspaceFolder}/../nvda/miscDeps/python" ], - "python.defaultInterpreterPath": "../nvda/.venv/scripts/python.exe" + "python.defaultInterpreterPath": "${workspaceFolder}/../nvda/.venv/scripts/python.exe" }