You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.nls.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
"python-envs.pythonProjects.envManager.description": "The environment manager for creating and managing environments for this project.",
7
7
"python-envs.pythonProjects.packageManager.description": "The package manager for managing packages in environments for this project.",
8
8
"python-envs.terminal.showActivateButton.description": "Whether to show the 'Activate' button in the terminal menu",
9
-
"python-envs.terminal.autoActivationType.description": "Specifies how the extension can activate an environment in a terminal.\n\nUtilizing Shell Startup requires changes to the shell script file and is only enabled for the following shells: zsh, fsh, pwsh, bash, cmd. When set to `command`, any shell can be activated.\n\nThis setting applies only when terminals are created, so you will need to restart your terminals for it to take effect.\n\nTo revert changes made during shellStartup, run `Python Envs: Revert Shell Startup Script Changes`.",
9
+
"python-envs.terminal.autoActivationType.description": "Specifies how the extension can activate an environment in a terminal.\n\nUtilizing Shell Startup requires changes to the shell script file and is only enabled for the following shells: zsh, fsh, pwsh, bash, cmd. When set to `command`, any shell can be activated. To disable activation you must both set this setting to `off` and also set `python.terminal.activateEnvironment` to `false`.\n\nThis setting applies only when terminals are created, so you will need to restart your terminals for it to take effect.\n\nTo revert changes made during shellStartup, run `Python Envs: Revert Shell Startup Script Changes`.",
10
10
"python-envs.terminal.autoActivationType.command": "Activation by executing a command in the terminal.",
11
11
"python-envs.terminal.autoActivationType.shellStartup": "Activation by modifying the terminal shell startup script. To use this feature we will need to modify your shell startup scripts.",
12
12
"python-envs.terminal.autoActivationType.off": "No automatic activation of environments.",
`Auto Activation set to ${bothAct} because py-env.terminal.autoActivationType is ${pyenvAct} and python.terminal.activateEnvironment is ${pythonAct}\n`,
`Auto activation skipped: "python-envs.terminal.autoActivationType" is "${pyEnvAct}" and "python.terminal.activateEnvironment" is "${pythonAct}".`,
246
+
);
247
+
}else{
248
+
traceWarn(
249
+
`Auto activation requires both settings to align: "python-envs.terminal.autoActivationType" and "python.terminal.activateEnvironment". If you don't want auto activation, ensure "python.terminal.activateEnvironment" is set to 'false'.`,
250
+
);
251
+
}
239
252
}elseif(actType===ACT_TYPE_SHELL){
240
253
traceInfo(
241
254
`"python-envs.terminal.autoActivationType" is set to "${actType}", terminal should be activated by shell startup script`,
0 commit comments