We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f5c736 commit 2103237Copy full SHA for 2103237
src/extension.ts
@@ -264,7 +264,7 @@ async function watchEditsToRestartLanguageClient(context: ExtensionContext) {
264
try {
265
// get the absolute URI to this relative path
266
let configUri = Uri.file(
267
- workspace.workspaceFolders![0].uri.fsPath + '/' + configPath
+ path.join(workspace.workspaceFolders![0].uri.fsPath, configPath)
268
)
269
// read the config file
270
let configText = await workspace.fs.readFile(configUri)
0 commit comments