Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I move the panel in Visual Studio Code to the right side?

It's at the bottom by default.

For example in the following image ,panel(Section D) is at the bottom, instead I want it to move to the rightside i.e., in the area where README.md editior shown in Editor Groups(Section C). enter image description here

Image Credits: (https://code.visualstudio.com/images/codebasics_hero.png)

like image 803
1c. Avatar asked Jan 26 '17 13:01

1c.


People also ask

How do I move the Side Bar to the right in VS code?

Visual Studio Code shows the side bar on the left side by default. However, you can move it to the right if you want. Just right-click on the side bar and choose "Move Side Bar Right".


2 Answers

As of October 2018 (version 1.29) the button in @mvvijesh's answer no longer exists.

You now have 2 options. Right click the panel's toolbar (nowhere else on the panel will work) and choose "move panel right/bottom":

Or choose "View: Toggle Panel Position" from the command palette.

Source: VSCode update notes: https://code.visualstudio.com/updates/v1_29#_panel-position-button-to-context-menu

like image 178
dcastro Avatar answered Oct 06 '22 16:10

dcastro


For people looking for an answer (on how to move the side panel):

You can press

ctrl + , (Or cmd + , on OSX)

and add the following option to your user settings JSON file:

"workbench.sideBar.location": "right"

SideBar on the left

like image 24
Forres Avatar answered Oct 06 '22 16:10

Forres