Vscode: Setting to Disable Outline Sidebar

Created on 13 May 2019  ·  3Comments  ·  Source: microsoft/vscode

Search Terms

performance, outline, sidebar, settings, markdown, typescript

Suggestion

A setting to disable the sidebar outline altogether.

userSettings.outline.isDisabled = true;
workspaceSettings.outline.isDisabled = true;

Alternatively, if it could be hidden by default and the work could be deferred until the first expansion that would be satisfactory.

userSettings.outline.shouldHideByDefault = true;
workspaceSettings.outline.shouldHideByDefault = true;

Use Cases

  • Outline sidebar can cause UI non-responsiveness. Particularly on large markdown documents.
  • Personally, I dislike the visual noise so would at least like a setting to hide by default. Having to manually collapse it upon opening every window is frustrating.

Examples

The following are bugs, but represent a few reasons why a developer might want to disable the outline to improve performance. At least until a plugin's performance issues are resolved, which could be dependent on a 3rd party.

Checklist

My suggestion meets these guidelines:

  • [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
  • [x] This wouldn't change the runtime behavior of existing JavaScript code
  • [x] This could be implemented without emitting different JS based on the types of the expressions
  • [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
  • [x] This feature would agree with the rest of TypeScript's Design Goals.
*question javascript

Most helpful comment

Right click on an explorer side bar header, then uncheck Outline:

Screen Shot 2019-05-13 at 3 33 28 PM

All 3 comments

Please ask your question on StackOverflow. We have a great community over there. They have already answered thousands of questions and are happy to answer yours as well. See also our issue reporting guidelines.

Happy Coding!

Right click on an explorer side bar header, then uncheck Outline:

Screen Shot 2019-05-13 at 3 33 28 PM

Thank you! If this setting is not stored in settings, where is it stored?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

DovydasNavickas picture DovydasNavickas  ·  3Comments

shanalikhan picture shanalikhan  ·  3Comments

biij5698 picture biij5698  ·  3Comments

trstringer picture trstringer  ·  3Comments

trstringer picture trstringer  ·  3Comments