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.
1 parent d00804e commit 1de34baCopy full SHA for 1de34ba
src/vs/platform/terminal/node/terminalEnvironment.ts
@@ -184,7 +184,7 @@ export function getShellIntegrationInjection(
184
newArgs = [...newArgs]; // Shallow clone the array to avoid setting the default array
185
newArgs[newArgs.length - 1] = format(newArgs[newArgs.length - 1], appRoot);
186
// Move .zshrc into $ZDOTDIR as the way to activate the script
187
- const zdotdir = path.join(os.tmpdir(), 'vscode-zsh');
+ const zdotdir = path.join(os.tmpdir(), `${os.userInfo().username}-vscode-zsh`);
188
envMixin['ZDOTDIR'] = zdotdir;
189
const filesToCopy: IShellIntegrationConfigInjection['filesToCopy'] = [];
190
filesToCopy.push({
0 commit comments