diff --git a/.vscode/launch.json b/.vscode/launch.json index c774552..94e078f 100755 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,3 @@ -// A launch configuration that launches the extension inside a new window -// Use IntelliSense to learn about possible attributes. -// Hover to view descriptions of existing attributes. -// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 { "version": "0.2.0", "configurations": [ @@ -9,18 +5,18 @@ "name": "Run Extension", "type": "extensionHost", "request": "launch", - "args": [ - "--extensionDevelopmentPath=${workspaceFolder}" - ] - }, - { - "name": "Extension Tests", - "type": "extensionHost", - "request": "launch", "args": [ "--extensionDevelopmentPath=${workspaceFolder}", - "--extensionTestsPath=${workspaceFolder}/test/suite/index" + "--new-window", + "--folder-uri=${input:workspaceFolder}" ] } + ], + "inputs": [ + { + "id": "workspaceFolder", + "type": "promptString", + "description": "Enter the folder path to open in a new window" + } ] }