We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a424fd commit 4ff5418Copy full SHA for 4ff5418
src/utils.ts
@@ -369,11 +369,6 @@ export function resolvePathVariables(pathStr: string): string {
369
if (!pathStr) {
370
return pathStr;
371
}
372
- const requiresWorkspace = pathStr.includes('${workspaceFolder}') ||
373
- pathStr.includes('${workspaceFolderBasename}');
374
- if (requiresWorkspace && !workspace.workspaceFolders?.length) {
375
- return pathStr;
376
- }
377
return vscodeVariables(pathStr);
378
379
0 commit comments