Feature Request: Option to disable opening files in editor when Roo edits or creates them ("Chat-only" mode) #6981
Closed
doroginin
started this conversation in
Feature Requests
Replies: 1 comment 1 reply
-
Already exists in experimental settings |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
Please add a setting to prevent Roo Code from automatically opening editor tabs when it edits or creates files.
For example:
When false, Roo would still apply changes to files in the workspace, but would not open them in the active editor view. This would allow working in a pure "chat-only" mode without distracting tab switches.
Why
Keeps focus in the chat panel during long AI-assisted workflows.
Avoids tab clutter when Roo edits multiple files.
Useful for users who trust Roo's changes and prefer to review them later via SCM diff instead of seeing them live.
Possible Implementation
Wrap all vscode.window.showTextDocument() and vscode.diff calls in a check for the setting.
If the setting is disabled, just write the file to disk without showing it.
Additional Notes
Similar UX options exist in other AI-assisted coding extensions (e.g., GitHub Copilot Workspace preview).
This would make Roo Code much more pleasant for "chat-driven" workflows.
Beta Was this translation helpful? Give feedback.
All reactions