Make the code folding icons always show in Visual Studio Code

后端 未结 2 755
梦如初夏
梦如初夏 2020-12-11 18:44

Loving using Visual Studio Code but one peeve is that I always think my code isn\'t indented properly since the left edge of the actual editor is kind of far from the number

2条回答
  •  感动是毒
    2020-12-11 19:14

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

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

    And to show folding icons:

    "editor.showFoldingControls": "always"
    

    Note that this setting requires you to have at least 1.13.

提交回复
热议问题