We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4fcbb0 commit d0471aeCopy full SHA for d0471ae
1 file changed
src/features/terminal/terminalManager.ts
@@ -309,18 +309,8 @@ export class TerminalManagerImpl implements TerminalManager {
309
// https://github.com/microsoft/vscode-python-environments/issues/172
310
// const name = options.name ?? `Python: ${environment.displayName}`;
311
const newTerminal = createTerminal({
312
- name: options.name,
313
- shellPath: options.shellPath,
314
- shellArgs: options.shellArgs,
315
- cwd: options.cwd,
+ ...options,
316
env: envVars,
317
- strictEnv: options.strictEnv,
318
- message: options.message,
319
- iconPath: options.iconPath,
320
- hideFromUser: options.hideFromUser,
321
- color: options.color,
322
- location: options.location,
323
- isTransient: options.isTransient,
324
});
325
326
if (autoActType === ACT_TYPE_COMMAND) {
0 commit comments