Make icons for folding code always appear in Visual Studio code

Love with Visual Studio, but my one opinion is that I always think that my code is not indented properly, since the left edge of the actual editor is a bit far from numbers.

Is there a way to show code folding +/- icons by default? It only shows them if you are hanging over a gutter.

As an aside, if there is a way to change the color of the gutter so that it looks different from the editor?

+4
source share
2 answers

To change the color of the gutter, you can add the following user parameters:

"workbench.colorCustomizations": {
    "editorGutter.background": "#abcdef"
}

And to display the folded icons:

"editor.showFoldingControls": "always"

, 1.13.

+6

. github, .

, ( , ).

.
, → → , settings.json,

"editor.renderIndentGuides": true

VSCode Indentation Guide

+1

Source: https://habr.com/ru/post/1675058/


All Articles