[ide-mode] Keep track of recently-opened files and send them to the CLI (#4463)

This commit is contained in:
christine betts
2025-07-21 17:54:37 +00:00
committed by GitHub
parent 45b764943a
commit 9bdcdf97d8
8 changed files with 337 additions and 10 deletions

View File

@@ -12,7 +12,6 @@ let logger: vscode.OutputChannel;
export async function activate(context: vscode.ExtensionContext) {
logger = vscode.window.createOutputChannel('Gemini CLI IDE Companion');
logger.show();
logger.appendLine('Starting Gemini CLI IDE Companion server...');
ideServer = new IDEServer(logger);
try {