Reputation: 9166
how can I change order of tabs in VSCode without leaving the keyboard ?
I mean like this :
to this :
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
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