Ramin Gharib
Ramin Gharib

Reputation: 65

Vscode: How can I config "open new tab (editor)" keyboard shortcut?

I am looking for a shortcut to open a untitled blank tab (editor) in Vscode (version 1.28.1) instead of moving the mouse and double-click the upper bound of Vscode.

Upvotes: 3

Views: 2820

Answers (2)

Álvaro González
Álvaro González

Reputation: 146350

You can get a list of main default short-cuts at Help/ Keyboard Shortcut Reference.

Additionally, you can find the command at View/ Command Palette. Type e.g. new and you'll see the File: New Untitle File command together with current short-cut.

Command Palette: new

Upvotes: 2

Denis Beklarov
Denis Beklarov

Reputation: 146

You can open a new tab by creating a new file ("Command + n" on Mac, "Ctrl + n" on windows). The file won't be saved to disk until you do it manually.

Upvotes: 5

Related Questions