8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7001d5 commit f39f458Copy full SHA for f39f458
src/commands.ts
@@ -411,10 +411,16 @@ export class Commands {
411
// Then launch an integrated terminal with screen session
412
const terminal = vscode.window.createTerminal({
413
name: "Claude Code Session",
414
+ location: vscode.TerminalLocation.Panel
415
})
416
417
// Show the terminal and run the screen command
418
terminal.show(true)
419
+
420
+ // Hide sidebar and maximize terminal panel
421
+ // await vscode.commands.executeCommand("workbench.action.toggleSidebarVisibility")
422
+ await vscode.commands.executeCommand("workbench.action.toggleMaximizedPanel")
423
424
terminal.sendText("screen -xRR claude-code")
425
}
426
0 commit comments