29

In my VS Code set up I see the output/FSI frame below the main text editor pane like this:

enter image description here

whereas I would love it to appear to the right in the side-by-side view like it does on the images in this link: http://www.wintellect.com/devcenter/jwood/a-quick-look-at-f-in-visual-studio-code

Is there a config option I cannot find somewhere?

I tried Googling but drew a blank and cannot see anything obvious in the config options mentioned on the vs code site page describing the config options

Stewart_R
  • 13,764
  • 11
  • 60
  • 106
  • Just got added. You can view the pull request on [github](https://github.com/Microsoft/vscode/pull/36827). This feature is available on VS code insiders now. – Supra_01 Nov 03 '17 at 17:34

11 Answers11

50

vs code snapshot

as of version 1.51.1 right click in the right corner on the output panel. then select option 'move panel right'

Pranav Asthana
  • 892
  • 1
  • 9
  • 21
13

I don't believe you can detach/move the output windows in Visual Studio Code. You can move the side bar to the left/right side, but that's it. There is no config option, sorry.

You could try posting a feature request on the GitHub page: https://github.com/Microsoft/vscode

EDIT: This was changed in VS Code 0.10.8, it was once on the side but was moved to the bottom. See this GitHub issue: https://github.com/Microsoft/vscode/issues/2806

Tobiah Zarlez
  • 1,680
  • 1
  • 12
  • 13
  • 1
    Thanks for responding. I couldn't find any config option either but, looking at the screengrabs on the blog, this guy seems to have done it: http://www.wintellect.com/devcenter/jwood/a-quick-look-at-f-in-visual-studio-code – Stewart_R Apr 19 '16 at 22:28
  • 2
    I believe in an older, previous version of Visual Studio Code the output window was on the right side. But it was moved at some point to be the bottom. - Edited with version it changed – Tobiah Zarlez Apr 19 '16 at 23:42
  • 2
    Floating window support (to detach/move a tab to a separate window) is still a pending feature request: https://github.com/Microsoft/vscode/issues/10121 – Roy Tinker Feb 01 '18 at 19:19
7

This feature is not available yet in VS Code. However as of today (March 30, 2017) it's on 6 months roadmap so it should be done in a near feature.

Vlad Bezden
  • 83,883
  • 25
  • 248
  • 179
6

This feature is available from version 1.18.0+

Simply click this icon to dock to the right:

enter image description here

Stewart_R
  • 13,764
  • 11
  • 60
  • 106
6

Just follow the steps mentioned:

In Visual Studio Code -

View Tab > Appearance > Toggle Panel Position

That's it.

Shakti Singh
  • 76
  • 1
  • 5
5

Your original link to the view your desire is obsolete, so it is a guess as to what you wanted. But here is a demo of setting up a terminal/output look side-by-side. It is a little tricky - you drag your Outline header over the Terminal header which will then allow you the option of putting it to the left or right of the Terminal:

move Output to right of terminal

Mark
  • 143,421
  • 24
  • 428
  • 436
2

its easy. just right-click on the terminal, select 'move panel right' like in the image below and voila

the image can be found here

Bruno
  • 135
  • 1
  • 11
1

Vertical Split:

From VS Code Menu bar:

View >> Appearance >> Move Panel Right 
0

Version 1.47.0 of VS Code (at the moment of posting this, the latest one) allows you to drag output (or any other panel tab, e.g. terminal) to the activity bar. This way you can obtain output to the side of the editor. Output window tab in the activity bar

mate00
  • 2,727
  • 5
  • 26
  • 34
lukhirt
  • 7
  • 3
0

Just right click on the panel of output section then select "Move panel left or right" as per your wish. here your can see the move panel left option.

0
  1. Press CTRL + SHIFT + P
  2. Select Preferences: Open User Settings (JSON)
  3. Insert (or change if it is there --search for it) the following config line:
    "workbench.panel.defaultLocation": "right",
  1. Save file.

That will work for new workspaces. VS-Code saves your preferences for each folder you start it in. So, if you navigate to a folder you previously called VS-Code in (I mean, from the terminal), it will open the output panel in the same location it was the last time you have used VS-Code from the same location.
After making the change above, go to a new place, like /opt and start VS-Code there to make a test.