Zooly
Zooly

Reputation: 4787

Is there a shortcut to switch panel instead of switching tab?

I'm working on VSCode (last version) and sometimes I work with splitted panels.

I can't find a way to achieve same behavior than a Ctrl + Tab but for panels.

It currently sends me to another tab in the current panel.

Upvotes: 2

Views: 756

Answers (1)

fanduin
fanduin

Reputation: 1189

In vscode these are referred to as editor groups and can be switched between using either:

  1. CTRL+K, CTRL+LeftArrow/RightArrow

    to move focus through the editor groups. If you only have two active groups then this is equivalent to what you describe. This is the under Focus Next Group/Focus Previous Group in the keyboard shortcut settings so you could remap this to something else if you prefer.

or

  1. CTRL+1/2/3

    To specify focus in editor group 1/2/3

Upvotes: 5

Related Questions