We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a0dede commit a4e80b7Copy full SHA for a4e80b7
1 file changed
src/features/terminal/terminalManager.ts
@@ -142,20 +142,6 @@ export class TerminalManagerImpl implements TerminalManager {
142
this.shellSetup.clear();
143
}
144
145
- if (e.affectsConfiguration('terminal.integrated.shellIntegration.enabled')) {
146
- traceInfo('Shell integration setting changed, invalidating cache');
147
- const updatedShellIntegrationSetting = await getShellIntegrationEnabledCache();
148
- if (!updatedShellIntegrationSetting) {
149
- const shells = new Set(
150
- terminals()
151
- .map((t) => identifyTerminalShell(t))
152
- .filter((t) => t !== 'unknown'),
153
- );
154
- if (shells.size > 0) {
155
- await this.handleSetupCheck(shells);
156
- }
157
158
159
}),
160
onDidChangeWindowState((e) => {
161
this.hasFocus = e.focused;
0 commit comments