Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VSCode Open external terminal and focus on it

I use ctrl+shift+c to open the external terminal on vscode, but it does not focus on external terminal. It always behind the vscode. I want to know how to open the external terminal and "focus" on it.

like image 479
ray Avatar asked Jan 08 '19 03:01

ray


People also ask

What is Zen mode in VS Code?

Zen Mode. Per user requests, we have added Zen Mode to VS Code. Zen Mode lets you focus on your code by hiding all UI except the editor (no Activity Bar, Status Bar, Sidebar and Panel) and going to full screen. Zen mode can be toggled using the View menu, Command Palette or by the shortcut Ctrl+K Z.

How do I enable side preview in VS Code?

To switch between views, press Ctrl+Shift+V in the editor. You can view the preview side-by-side (Ctrl+K V) with the file you are editing and see changes reflected in real-time as you edit.


1 Answers

{
        "key": "ctrl+;",
        "command": "workbench.action.focusActiveEditorGroup",
        "when": "terminalFocus"
    },
``` to complete the settings
like image 167
Owen Valentinus Avatar answered Nov 04 '22 18:11

Owen Valentinus