skip to Main Content

Here’s a screenshot of what I’m seeing.

How to restore the basic layout of vs code. Accidentally the sidebar and menu bar is hidden. I am unable to access anything. Please help me out from this issue.

I did not find sidebar, menu bar and other functionalities.

2

Answers


  1. Are you referring to restoring the default workspace?

    If so, according to VS Code Documentation:

    You can always reset a setting to the default value by hovering over a setting to show the gear icon, clicking on the gear icon, and then selecting the Reset Setting action.

    You can read more on that here

    Login or Signup to reply.
  2. You can reset view locations using the View: Reset View Locations command in the command palette.

    For the missing menu, check your user settings.json file and look for a line that modifies the "window.menuBarVisibility" property. I suspect you have accidentally set it to "hidden". You can either change the value to whatever you want, or remove that line to cause the default value of the setting to be used.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search