Add MCP loading indicator when initializing Gemini CLI (#6923)

This commit is contained in:
Pascal Birchler
2025-08-28 21:53:56 +02:00
committed by GitHub
parent ecdea602a3
commit 03bcbcc10d
5 changed files with 96 additions and 7 deletions

View File

@@ -38,6 +38,7 @@ import { annotateActiveExtensions } from './extension.js';
import { getCliVersion } from '../utils/version.js';
import { loadSandboxConfig } from './sandboxConfig.js';
import { resolvePath } from '../utils/resolvePath.js';
import { appEvents } from '../utils/events.js';
import { isWorkspaceTrusted } from './trustedFolders.js';
@@ -568,6 +569,7 @@ export async function loadCliConfig(
shouldUseNodePtyShell: settings.tools?.usePty,
skipNextSpeakerCheck: settings.model?.skipNextSpeakerCheck,
enablePromptCompletion: settings.general?.enablePromptCompletion ?? false,
eventEmitter: appEvents,
});
}