File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/client/terminals/envCollectionActivation Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
102102 // env extension or terminalEnvVar experiment
103103 const settings = this . configurationService . getSettings ( resource ) ;
104104 if ( settings . terminal . shellIntegration . activate ) {
105- await this . activateUsingEnvVar ( resource ) ;
105+ await this . activateUsingShellIntegrationEnvVar ( resource ) ;
106106 return ;
107107 }
108108
@@ -181,9 +181,8 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
181181
182182 /**
183183 * Activates environments using shell-specific environment variables (e.g., VSCODE_PYTHON_BASH_ACTIVATE).
184- * This method works independently of the env extension or terminalEnvVar experiment.
185184 */
186- private async activateUsingEnvVar ( resource : Resource ) : Promise < void > {
185+ private async activateUsingShellIntegrationEnvVar ( resource : Resource ) : Promise < void > {
187186 if ( ! this . registeredOnce ) {
188187 this . interpreterService . onDidChangeInterpreter (
189188 async ( r ) => {
You can’t perform that action at this time.
0 commit comments