Reputation: 31
I want to change the style of my Visual Studio Code Editor to look like this: (with a thick bar on the left):
Upvotes: 2
Views: 863
Reputation: 11819
Since Local History was added in March, the settings for the SCM gutter decorations changed a tad bit. Bellow shows what the new decorations look like.
/** @file "settings.json" */
{
"scm.diffDecorationsGutterAction": "diff",
"scm.diffDecorationsGutterVisibility": "always",
"scm.diffDecorationsGutterWidth": 4,
"scm.diffDecorationsGutterPattern": {
"added": true,
"modified": true
},
}
Upvotes: 0
Reputation: 31
Answering my own question, it's only needed to set "scm.diffDecorations" in Visual Studio Code settings from "all" to "gutter". Reference: How can you disable Gutter Indicators in VS Code?
example-of-how-to-set-scm.diffDecorations-in-vscode
And useful documentation about the meaning of colors for gutter indicators in Visual Studio Code is here: https://vscode-docs.readthedocs.io/en/latest/editor/versioncontrol/#gutter-indicators
Upvotes: 1