mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: Prevent terminal focus theft on paste after command execution (#3356)
This commit is contained in:
parent
6d7ed1c0ff
commit
fd859b4d13
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ export async function executeCommand(
|
|||
const terminal = await TerminalRegistry.getOrCreateTerminal(workingDir, !!customCwd, cline.taskId, terminalProvider)
|
||||
|
||||
if (terminal instanceof Terminal) {
|
||||
terminal.terminal.show()
|
||||
terminal.terminal.show(true)
|
||||
|
||||
// Update the working directory in case the terminal we asked for has
|
||||
// a different working directory so that the model will know where the
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue