We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68de7c7 commit b88c5a2Copy full SHA for b88c5a2
1 file changed
src/features/terminal/terminalManager.ts
@@ -150,6 +150,9 @@ export class TerminalManagerImpl implements TerminalManager {
150
await Promise.all(
151
providers.map(async (p) => {
152
const state = await p.isSetup();
153
+ // TODO: Consider removing setting check as it won't be as accurate to check
154
+ // whether injection actually succeeded.
155
+ // Perhaps use caching instead to avoid waiting.
156
const shellIntegrationEnabledSetting = await getShellIntegrationEnabledCache();
157
const shellIntegrationActiveTerminal = await waitForShellIntegration(activeTerminal());
158
const shellIntegrationLikelyAvailable =
0 commit comments