skip to Main Content

Say I have a few tabs open in VS Code. How do I move my current tab left or right relative to its current position. I believe the Atom text editor had a shortcut for this (alt+shift+left/right) but that doesn’t seem to work in VS Code.

2

Answers


  1. The functionality is yet to be developed.
    You can find the dev discussion thread here
    Commands to move tabs to desired position

    Login or Signup to reply.
  2. I use these options:

    workbench.action.moveEditorRightInGroup

    workbench.action.moveEditorLeftInGroup

    My VSCode version is 1.73.0. I remapped the hotkeys to what’s in the screenshot as the only conflicting shortcuts for me were indent/outdent. I just use Tab/Shift+Tab for that.

    screenshot of vscode keyboard shortcut options for moving a tab right or left

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search