Reputation: 7533
Say I split my editor into two halves, left and right, and I wanna move a file that is opened in a tab from the left-hand side editor to the right one and vice versa.
Upvotes: 155
Views: 40762
Reputation: 51
For those who are attempting this in a Windows Remote Desktop window it will not work. I struggled with this for quite some time before realizing that the Ctrl+Alt+</Arrow keys/> shortcut was not reaching my remote desktop session :(
I found the reason on stackExchange - https://superuser.com/questions/327866/remote-desktop-sending-ctrl-alt-left-arrow-ctrl-alt-right-arrow-to-the-remote-p
There are some workarounds that are provided in this thread, but none that I could use inside my company. My only solution is to re-map the command to a different shortcut that isn't being consumed by RDP.
Hope it helps someone!
Upvotes: 5
Reputation: 67531
Windows: Ctrl+Alt+→/←
Mac: Ctrl+Cmd+→/←
Command names:
workbench.action.moveEditorToNextGroup
View: Move Editor into Next Group
workbench.action.moveEditorToPreviousGroup
View: Move Editor into Previous Group
Extra:
workbench.action.moveEditorToAboveGroup
View: Move Editor into Above Groupworkbench.action.moveEditorToBelowGroup
View: Move Editor into Below Groupworkbench.action.moveEditorToFirstGroup
View: Move Editor into First Groupworkbench.action.moveEditorToLastGroup
View: Move Editor into Last GroupUpvotes: 303