We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
WorkspaceFolder.name
${workspaceFolder:name}
1 parent fbfa126 commit 7a4de92Copy full SHA for 7a4de92
src/client/common/variables/systemVariables.ts
@@ -132,6 +132,8 @@ export class SystemVariables extends AbstractSystemVariables {
132
const basename = Path.basename(folder.uri.fsPath);
133
((this as any) as Record<string, string | undefined>)[`workspaceFolder:${basename}`] =
134
folder.uri.fsPath;
135
+ ((this as any) as Record<string, string | undefined>)[`workspaceFolder:${folder.name}`] =
136
+ folder.uri.fsPath;
137
});
138
} catch {
139
// This try...catch block is here to support pre-existing tests, ignore error.
0 commit comments