Closed
Description
Testing #182970
const term2 = vscode.window.createTerminal({
name: `Ext Terminal tranisent #${NEXT_TERM_ID++}`,
isTransient: true,
shellPath: 'fish'
} as any);
const collection = context.environmentVariableCollection;
collection.replace('FOO', 'REPLACED', { applyAtShellIntegration: true, applyAtProcessCreation: false });
collection.append('APPENDING', 'appending', { applyAtShellIntegration: true, applyAtProcessCreation: false })
collection.prepend('PREPENDING', 'prepending', { applyAtShellIntegration: true, applyAtProcessCreation: false });