From c93f1b3aaf7a05c6b92d6069dc792184f4a493f1 Mon Sep 17 00:00:00 2001 From: Sam Pinkus Date: Thu, 20 Feb 2025 20:31:53 +1000 Subject: [PATCH] lsp-sample: Set the client launch configuration workspace to something with some test txt files in it. Signed-off-by: Sam Pinkus --- lsp-sample/.vscode/launch.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lsp-sample/.vscode/launch.json b/lsp-sample/.vscode/launch.json index 4ba561224..5d59050f0 100644 --- a/lsp-sample/.vscode/launch.json +++ b/lsp-sample/.vscode/launch.json @@ -7,7 +7,10 @@ "request": "launch", "name": "Launch Client", "runtimeExecutable": "${execPath}", - "args": ["--extensionDevelopmentPath=${workspaceRoot}"], + "args": [ + "--extensionDevelopmentPath=${workspaceRoot}", + "${workspaceRoot}/client/testFixture" + ], "outFiles": [ "${workspaceRoot}/client/out/**/*.js", "${workspaceRoot}/server/out/**/*.js"