Gwhyyy
Gwhyyy

Reputation: 9166

how to change vscode tabs order with keyboard shortcut

how can I change order of tabs in VSCode without leaving the keyboard ?

I mean like this :

enter image description here

to this :

enter image description here

I changed here the order of tabs, usually I can do it with mouse by dragging, but I want to know if there is any way to do it with keyboard only.

Upvotes: 2

Views: 333

Answers (1)

Kamen Minkov
Kamen Minkov

Reputation: 3722

Yes, there is a way. You have the commands workbench.action.moveEditorLeftInGroup and workbench.action.moveEditorRightInGroup (for example on Windows they're by default bound to Ctrl+Shift+PageUp and Ctrl+Shift+PageDown respectively).

Upvotes: 2

Related Questions