We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4061d5e commit 74e1a5eCopy full SHA for 74e1a5e
1 file changed
src/client/providers/jediProxy.ts
@@ -463,6 +463,10 @@ function getConfig() {
463
}
464
return path.join(vscode.workspace.rootPath, extraPath);
465
});
466
+
467
+ // Always add workspace path into extra paths
468
+ extraPaths.unshift(vscode.workspace.rootPath);
469
470
let distinctExtraPaths = extraPaths.concat(additionalAutoCopletePaths).filter((value, index, self) => self.indexOf(value) === index);
471
return {
472
extraPaths: distinctExtraPaths,
0 commit comments