I currently am regularly trying to move files in VS2019 via my keyboard since I have become accustomed to it in VSCode. In VSCode I have a mapping for:
{
"key": "ctrl+alt+right",
"command": "workbench.action.moveEditorToNextGroup"
}
{
"key": "ctrl+alt+left",
"command": "workbench.action.moveEditorToPreviousGroup"
}
The observed behavior with the above is that if there is 1 tab open, pressing a shortcut will open a new group and move the current file into the group. If I move all files from one group, into another, it will close the group. If there are 2 or more groups, pressing either shortcut will move the file into the next/previous group.
Looking through VS2019 Keyboard mappings in the settings menu, I cant seem to find an equivalent. I tried setting
Window.MovetoNextTabGroup
but it doesnt seem to function as I expect.