landau
landau

Reputation: 5841

Editor in same column as terminal

In VSCode, how do I create a heterogeneous vertical split contained completely within a single column? I would like to define a column such that the terminal is on top, a text editor is on the bottom, and neither this terminal nor this editor intrudes into the other columns. Is that possible?

enter image description here

Upvotes: 0

Views: 122

Answers (1)

Mark
Mark

Reputation: 182131

This will be very easy with vscode1.58, due out this week. Because you can drag a terminal to the editor area.

First create your vertical split so you have two columns. Then just drag a terminal into the upper half of the right-hand split. Then close your Panel (where the terminal was).

put terminal into right-hand column

Also there are some move the terminal commands you can make keybindings out of:

move terminal commands

See more https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_58.md#terminals-in-the-editor-area

Upvotes: 1

Related Questions