Keith
Keith

Reputation: 2019

Is there a tabbed view for VSCode?

Just wondering if there is a way to get a tabbed view in VS Code (editor), and if not, is that feature yet to be added?

Upvotes: 19

Views: 11001

Answers (4)

Esakki Krishnan
Esakki Krishnan

Reputation: 469

VS Code v1.3.0 has tabs similar to that of sublime text.

But Tab switching is still the same as the previous version.

enter image description here

Upvotes: 0

natemcmaster
natemcmaster

Reputation: 26763

Update

Yes! VS Code 1.3.0 added this feature.

Original

Not as of v0.3.0, as far as I know.

Feature requests: http://visualstudio.uservoice.com/forums/293070-visual-studio-code

Issue reporting: https://code.visualstudio.com/Issues/List

Upvotes: 15

bgashler1
bgashler1

Reputation: 193

Yes to both of your questions.

It recently became available, if you are on the nightly Insiders release. This will soon be introduced into the product itself as well, most likely in early July.

  • First, download the Insiders release.
  • In VS Code Insider's top application menu, open Preferences > User Settings, and then add the following setting "workbench.editor.showTabs": true

You then will have tabs enabled in your editor as shown below

VS Code with tabs enabled

Upvotes: 15

Bilal
Bilal

Reputation: 3272

The closest thing to the tabs concept tha i found is using Ctrl+Tab to navigate in the history of opened files.

Upvotes: 1

Related Questions