-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature request] Option to disable output tab from automatically opening when running code #1177
Comments
Hello! i think It's possible. First let's talk about this: We are currently working in the extensions/formulahendry.code-runner-... folder. "code-runner.showOutputTab" : {
"type": "boolean",
"default": true,
"description": "Show output tab during code execution",
"scope": "resource"
} Place this code inside the configurations dictionary, be careful to follow json syntax!
And replace string
Done! P.S. After the tests, I can say that everything works if you figured out how to redirect the output to a new window. And sorry for my English)) |
Is your feature request related to a problem? Please describe.
When using code runner extension and having the output opened in a new window (instead of a tab in vscode panel) whenever i run a script, code runner behavior is to automatically open the output tab, which will open on top of my output window.
Thus this gives me 2 mirrored outputs and kind of ruins the purpose and goal of having output as external window which i prefer.
Describe the solution you'd like
I would like an option in code runner's settings to simply disable the automatic opening of the output tab on running scripts True/False.
With the output tab not opening automatically, the script's output will be only visible on the external output window.
The text was updated successfully, but these errors were encountered: