Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

keyboard shortcut for switching tabs inside the browser window #5

Open
yzorg opened this issue Nov 16, 2018 · 0 comments
Open

keyboard shortcut for switching tabs inside the browser window #5

yzorg opened this issue Nov 16, 2018 · 0 comments

Comments

@yzorg
Copy link
Owner

yzorg commented Nov 16, 2018

Interesting keyboard navigation (not default) to move "panes" in VS Code. Consider using ctrl+] or alt+] to switch directory "tabs" or "panes" in yzfolder.

[
  { "key": "cmd+]", "command": "workbench.action.nextEditor" },
  { "key": "cmd+[", "command": "workbench.action.previousEditor" },
  {
    "key": "cmd+]",
    "command": "workbench.action.nextSideBarView",
    "when": "sideBarFocus"
  },
  {
    "key": "cmd+[",
    "command": "workbench.action.previousSideBarView",
    "when": "sideBarFocus"
  },
  {
    "key": "cmd+]",
    "command": "workbench.action.nextPanelView",
    "when": "panelFocus"
  },
  {
    "key": "cmd+[",
    "command": "workbench.action.previousPanelView",
    "when": "panelFocus"
  }
]

from https://code.visualstudio.com/updates/v1_29#_workbench-navigation-commands

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant