Move terminal panel to bottom option gone? (VSCode

2020-04-05 07:53发布

Just updated VSCode to 1.29.0 on macOS 10.12.6 and it looks like this option to move the terminal to the bottom of VSCode (and then back right) is no more. Is that on purpose? Did it move to a specific setting? I was using that feature quite a lot.

Here goes a screenshot:

enter image description here

EDIT: Can still move by context menu:

enter image description here

2条回答
Anthone
2楼-- · 2020-04-05 08:22

EDIT for v1.42 (January 2020 release):

Panel on the left

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)

See https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_42.md#panel-on-the-left


[Previous answer - see above for later info:]

See release notes on panel position button.

Panel position button to context menu

In order to preserve horizontal space and reduce clutter, we removed the toggle Panel position button (Move to Right, Move to Bottom) from the Panel title area. The action is now available in the Panel title area context menu and also in View > Appearance > Toggle Panel Position main menu. Another reason for removing this button was that we believe users set their layout once and don't normally toggle back and forth.

There is also this setting to "permanently" change the panel location:

workbench.panel.defaultLocation

But to move it on the fly now you use the context menu.

Apparently people just weren't using it enough to warrant the screen space.

查看更多
聊天终结者
3楼-- · 2020-04-05 08:47

Just Click through the following:

View > Appearance > Toggle Panel Position

查看更多
登录 后发表回答