I just started using VSCode and I'm looking for a way of, while having both the code open and the terminal(the one inside VSCode), switch between typing on these parts of the editor with a shortcut. Looked around the web but the best I could find would be to close and open the terminal.
Any ideas how to do this?
112 Answers
I found bit hard to press ctrl+`. It also close the terminal when we press ctrl + '
So, I configured mine as following:
{ "key": "ctrl+j", "command": "workbench.action.focusActiveEditorGroup", "when": "!terminalFocus"
},
{ "key": "ctrl+k", "command": "workbench.action.terminal.focus", "when": "terminalFocus"
}Step to configure:
- Go to: File > Preferences > keyboard shortcuts
- then in the search-bar search for "focus terminal"
- select "workbench.action.terminal.focus" and then ctrl + k or press your custom key and then press enter.
- Similarly, in the search-bar search for "focus active editor group
- select "workbench.action.focusActiveEditorGroup" and then press ctrl + j or press your custom key and then press enter.
After the above setup:
- Press ctrl + k to focus cursor on terminal
- Press ctrl + j to focus cursor on coding section without closing terminal
Refer to this Question/Answers Switch focus between editor and integrated terminal in Visual Studio Code on Stackoverflow, I think @Trav L answer might be closed one. But need to config a little bit more.
VS Code v1.26.1 as a base version
- Open keyboard shortcut editor from menu File->Preferences->Keyboard Shortcuts (
Ctrl+K Ctrl+S) - Click on the link
keybindings.jsonabove the screen. - Overwrite your custom keyboard shortcuts on the right side panel, the
keybindings.jsonfile will store in your<user dir>\AppData\Roaming\Code\User. With this values you can overloading thekey shortcutwith usingwhenkeyword like code below.
Credit: @wgj user of Stackoverflow
// Toggle between terminal and editor focus { "key": "ctrl+`", "command": "workbench.action.terminal.focus"}, { "key": "ctrl+`", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus"}
- Now you can toggle cursor position by press the same key
Ctrl+`, VS Code will recognize base by situation where the cursor is.
Special 1
Use Settings Sync extension for saving your custom key binding and others to your secret GIST (Github), for switching between workstation, it's recommended from me. It's quite convenient for me.
Special 2
Some time I need to kill the terminal pane for get the whole code area screen. So I also setting this to keybindings.json. The result is equal to clicking on the X mark of the terminal pane. (Just change to your favorite key if you would like to)
1{ "key": "ctrl+k ctrl+`", "command": "workbench.action.terminal.kill" },
Generally VS Code uses ctrl+j to open Terminal so I created a keybinding to switch with ctrl+k combination, like below at keybindings.json:
[{ "key": "ctrl+k", "command": "workbench.action.terminal.focus"
},
{ "key": "ctrl+k", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus"
}] You do this by setting the keybindings for Focus Terminal and Focus Active Editor Group. These two will allow you to switch the focus between the Editor and the Terminal, without having to just close the terminal.
The other positive is if you perform some action that causes another panel to open such as Output or Problems. Using the keystroke for the editor group will change your focus back to the editor.
I can't say what these are by default because I set this long ago in Code. As you can see from the screenshot below I set them to the same keybinding: ctrl + shift + i.
This makes them act as a toggle switch so it takes the focus back and forth. You can basically just hold down ctrl + shift, then hitting i will move your focus back and forth.
0Here is how to have the same hotkey to switch back and forth from code to terminal for maximum productivity:
{ "key": "f1", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus" }, { "key": "f1", "command": "workbench.action.terminal.focusNext", "when": "!terminalFocus" }, If you want Ctrl+` to toggle between terminal and the text editor, then do the following:
Open your
keybinding.jsonfile: Ctrl+Shift+P then selectPreferences: Open Keyboard Shortcuts (JSON).Add the following line:
{ "key": "ctrl+`", "command": "workbench.action.terminal.toggleTerminal" },- Save and close
keybinding.jsonfile.
Toggle Integrated Terminal
Ctrl + `
This will turns on/off terminal viewport while switches your cursor back and forth between editor and terminal.
1I see you already got some options, but I wanted to add the method I use.
Press CTRL + SHIFT + p
Write 'view terminal'
Command palette should now show: View: Toggle Integrated Terminal
Press ENTERNow you can use CTRL + SHIFT + p followed by ENTER to toggle between terminal and the text editor as long as that command is the last used in the command palette.
This option will hide the terminal when you go back to the editor.
An alternative that only shifts focus and keeps terminal visible is here:
View: Focus First Editor Group
Terminal: Focus TerminalAlso found in the command palette.
I know they are not direct shortcuts, but I find the command palette easy to work with, since I have the commands I often use a few clicks away by using the down arrow.
3There is no default shortcut for switching between terminal and editor in VScode. But you can add USER shortcut in the Settings > Keyboard Shortcuts.
Note:-I have placed "Altr + Ctrl + ," for Editor Focus and "Altr + Ctrl + ." for Terminal Focus as shortcuts, as they are not used by any other tasks and are easy to reach.
In Keyboard Shortcuts, type Focus Active Editor Group and DOUBLE CLICK the option and create your own shortcut and press ENTER.
In Keyboard Shortcuts, type Terminal: focus terminal action and find the option exactly we have written above i.e. "Terminal: focus terminal action" and create your own shortcut and press ENTER
There are many similar options related to terminal focus like previous terminal, next terminal etc but they already have shortcuts, so it would be easy to find it.
Well, i have provided the method for windows, And i am not sure about IOS and LINUX, But I think it will work.
answer rolling for April 2021
to focus to your differents panel of VSCode you have to edit your "workbench" commands :
CTRL + K +CTRL +S otherwise Files > Preferences > Keyboard Shortcut
look for this command
workbench.action.terminal.focusto focus to your code you have to set the following command
workbench.action.focusActiveEditorGroupto focus into the file explorer of vscode you have to set the following command
workbench.files.focusFilesExplorer
and no more need to search to the mouse or to quit your keyboard for the touchpad
That's all folks ! Hope you will spend less energy on your touchpad ... !
What I like to do is
Focus on terminal
Ctrl+`
Focus back to Editor
Ctrl + E, Enter
In case that somebody wants to switch between the editor window above and the panel below, regardless of whether the Terminal, the Debug Console, the Output window or the Problem window is opened right now, you can use this code:
{ "key": "ctrl+.", "command": "workbench.action.focusPanel"
},
{ "key": "ctrl+.", "command": "workbench.action.focusActiveEditorGroup", "when": "panelFocus"
}It took me a bit of trying out until I found that strangely it is focusPanel in the command, but panelFocus in the when-condition.
Note that in my example, I am using "ctrl+.", not "ctrl.+`".