Home > Blockchain >  How to remove resizable lateral bars in single editor view from VS Code?
How to remove resizable lateral bars in single editor view from VS Code?

Time:01-26

For an unknown reason, VS Code is showing resizable lateral bars everytime in the single editor view (see attached picture).

enter image description here

I tried changing different settings, searching on different websites, reseting the settings from the JSON file, and reinstalling VS Code. However, I am unable to find how can I remove the lateral bars. Could you help me figure this out?

Thank you very much.

CodePudding user response:

It looks like you have centered layout turned on, which would explain the bars. You can turn it off with the command View: Toggle Centered Layout (workbench.action.toggleCenteredLayout).

That said, I'm not sure what you mean by "single editor view"; maybe you mean the command View: Single Column Editor Layout (workbench.action.editorLayoutSingle), or, it looks like you're using Jupyter so maybe you mean the setting jupyter.interactiveWindowMode set to single. My best guess is you're accidentally running Toggle Centered Layout instead of Single Column Editor Layout.

  • Related