简体   繁体   中英

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 ie, in the area where README.md editior shown in Editor Groups(Section C). 在此处输入图像描述

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

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

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"

左侧边栏

I'm using Visual Studio Code v1.24.0 on a Mac.

By default, the Panel will appear on the bottom (You can change the default as well. Please refer to @Forres' answer: Moving Panel in Visual Studio Code to right side )

Here's the bottom/right toggle button for VS Code Panel:

在此处输入图片说明

Once I click on this button, the Panel moves to the right.

在此处输入图片说明

Moving it back is a little tricky though. As you can see, some of the buttons are hidden. This is because the width of the panel when it's aligned right is too small. We need to expand the column to see all the buttons.

This is how it'll look upon expansion:

在此处输入图片说明

Now, if you want to move the Panel back to the bottom, click on the toggle bottom/top button again.

单击菜单选项View > Appearance > Move Side Bar Right或在 settings.json 中:

"workbench.panel.defaultLocation": "right"

Click menu option View > Appearance > Move to Side Bar Right . Once side bar moves to right, option "Move Side Bar Right" changes to "Move to Side Bar Left".

As of June 2019 this setting can be found through searching 'Panel' - if you want to change the default there is an option for it as shown in the screenshot: 在此处输入图片说明

For Visual Studio Code v1.31.1, you can toggle the panel session via the View menu.

  • Go to the View Menu.
  • Via the Appearance option, click on Toggle Panel Position

在此处输入图片说明

Hope this will help someone.

-> open to keyboard shortcut

-> search for "workbench.action.togglePanelPosition"

-> assign your desired shortcut

I've assigned keybinding "cmd+`"

{
  "key": "cmd+`",
  "command": "workbench.action.togglePanelPosition"
}

now I can toggle the terminal by pressing "cmd + `"

VSCode 1.42 (January 2020) introduces:

Panel on the left/right

The panel can now be moved to the left side of the editor with the setting:

 "workbench.panel.defaultLocation": "left"

This removes the command View: Toggle Panel Position ( workbench.action.togglePanelPosition ) in favor of the following new commands:

  • View: Move Panel Left ( workbench.action.positionPanelLeft )
  • View: Move Panel Right ( workbench.action.positionPanelRight )
  • View: Move Panel To Bottom ( workbench.action.positionPanelBottom )

You can do the same in insider's edition, There is an option on right top corner to switch to the panel to sidebar https://code.visualstudio.com/insiders/

terminal at the bottom side底部的终端

terminal at the right side右侧的终端

右侧带有终端的 vscode 屏幕截图

This answer is for people that just want their terminal on the right side (shown above), and don't care about the panel.

  1. Show vscode's Command Palette with keyboard shortcut command + shift + p or ctrl + shift + p
  2. Type in "terminal editor"
  3. Choose option that says Terminal: Create New Terminal in Editor Area to the Side

In version 1.55.2.

Go to View --> Appearance --> Move Panel Right在此处输入图片说明

我不知道它从哪个版本开始更改,但 1.11.2 在“视图”选项卡中有一个选项,可以将左栏向右更改,反之亦然

As sample as this from the GUI. View->Appearance->Move Side Bar Right

在此处输入图片说明

"workbench.panel.defaultLocation": "right",

Go to Command Palette from the wheel icon on the bottom left --> search and enter "settings" menu --> search "panel" in the search bar --> Select Default location as "right" instead of the "bottom". Reload VS Code, and you're good to go.

By default, ⌘J toggles the (bottom) panel. If all your views are on the side panel, make ⌘J toggle the side panel by doing:

Code > Preferences > Keyboard Shortcuts > "Command+J" > Right-click > Remove Keybinding

Code > Preferences > Keyboard Shortcuts > View: Toggle Side Panel > Add Keybinding > ⌘J

"Wokbench.panel.defaultLocation": "right"

Open settings using CTRL+. , search for terminal and you should see this setting at the top. From the drop down below the settings explanation, choose right . See the screenshot below.

在此处输入图片说明

Go to view , then appearence . Then select move panel bottom.

As of Stable v1.64 the setting "Wokbench.panel.defaultLocation": "right" will no longer work.

Replacing Panel Location

As mentioned above, the new Side Panel provides similar functionality as moving the Panel to the left or right, yet improves on this by not forcing the move of the original panel. Along with view drag and drop between panels, the new Side Panel is replacing the option to move the bottom Panel.

In light of that, we have deprecated the workbench.panel.defaultLocation setting as well as the Move Panel... commands in favor of similar commands Move Views From Panel To Side Panel ( workbench.action.movePanelToSidePanel ) and Move Views From Side Panel To Panel ( workbench.action.moveSidePanelToPanel ). The old commands will remap to the appropriate new command providing the similiar behavior. Though, we recommend updating your keybindings to the new commands.

面板位置

This is in favor of using the new Side Panel , which can be in addition to the previous Side Bar (where the Explorer, SCM views traditionally are) and the Panel (where Terminal, Output, etc. traditionally are). So you can have 3 panel-types of views. See more at the v1.64 Release Notes: https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_64.md#new-side-panel

The panel opens on the right by default.

Note that this setting needs to be in a new folder to take effect.

If VSCode has opened the folder before, the panel will still use the old location.

"workbench.panel.defaultLocation": "right",

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM