[ide-mode] Send the cursor and selected text from the IDE server (#4621)

This commit is contained in:
christine betts
2025-07-24 19:54:41 +00:00
committed by GitHub
parent f9930c2d36
commit 4e376c0447
4 changed files with 27 additions and 3 deletions

View File

@@ -15,7 +15,6 @@ let log: (message: string) => void = () => {};
export async function activate(context: vscode.ExtensionContext) {
logger = vscode.window.createOutputChannel('Gemini CLI IDE Companion');
log = createLogger(context, logger);
log('Extension activated');
ideServer = new IDEServer(log);
try {