This question already has answers here:
Is there a quick change tabs function in Visual Studio Code?
(25 answers)
Closed 3 years ago.
Is there a shortcut for jumping between already open files in vscode? By jumping I mean changing focus and putting my cursor in that file.
ctrl+tab to switch between tabs, ctrl+0 to focus on file explorer and ctrl+1 to focus on the editor.
Related
This question already has answers here:
VSCode shortcut to focus and navigate file in source control view
(2 answers)
Closed 15 days ago.
Is there a keyboard shortcut to navigate between changed files in the Source Control view?
Yes there is. Use the up and down arrow keys.
This question already has answers here:
Enable or disable VS Code Integrated Terminal Tabs?
(5 answers)
How to change VS Code terminal selection UI from tabs back to dropdown? [duplicate]
(1 answer)
Closed 1 year ago.
My terminal tab was like this.
But now it look like this:
So I would like to have the last terminal.
You just have to open settings.json file, and looking for:
"terminal.integrated.tabs.enabled": true
and make it false
And then your vscode terminal would have the old terminal tab.
This question already has answers here:
VSCode - Open terminals in a separate window
(10 answers)
Closed 1 year ago.
I can only create a terminal below or at the right side of the current windows, how can I move my terminal to a new window.
If terminal below or right is bothering you, and you say you want the terminal in a new window, wouldn't it be great if you just open your terminal in the next window?
VS Code in one window and iTerm in the second window with directory set to you code path.
This question already has answers here:
How to indent/format a selection of code in Visual Studio Code?
(16 answers)
Closed 4 years ago.
In VS Code, is there a quick way to change the indent of a block of selected lines like in Visual Studio? I can't find a suitable option under the Edit menu.
Using Notepad++, you can select the lines you want then press Tab to indent and Shift Tab to unindent.
This question already has answers here:
Shortcut for "move to left editor" and "move to right editor" in Eclipse?
(7 answers)
Closed 8 years ago.
Does anybody know the shortcut to switch between split windows in Eclipse? I need to quickly navigate window on right and back to left and vice versa.
Using Ctrl + F6 will give you a list of all the files opened in the editor view which you can use to switch between files.