gutter indicators
See original GitHub issueThis theme should alter gutter indicators as well
Here is what I’ve edited in settings.json to match Atom’s colors
"workbench.colorCustomizations": {
"editorGutter.addedBackground": "#109868",
"editorGutter.deletedBackground": "#9A353D",
"editorGutter.modifiedBackground": "#948B60",
}
or with a minor adjustment to match vs explorer colors
"workbench.colorCustomizations": {
"editorGutter.addedBackground": "#54C787",
"editorGutter.deletedBackground": "#9A353D",
"editorGutter.modifiedBackground": "#E0C987",
}
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
VS Code tips — Source control gutter indicators - YouTube
Today's VS Code tip: source control gutter indicators See uncommitted changes to files just by glancing at the gutter to the right of...
Read more >How can you disable Gutter Indicators in VS Code?
It is possible to change it in settings.json Ctrl + , "scm.diffDecorations": "all" | "gutter" | "overview" | "none". Or you can make...
Read more >No git gutter indicators are showing · Issue #60010 - GitHub
Right now gutter indicators are missing in my project on a computer running Windows 10 with VS Code 1.28.2. Changes are visible in...
Read more >Versioncontrol - vscode-docs
Gutter indicators · A red triangle indicates where lines have been deleted · A green bar indicates new added lines · A blue...
Read more >Source Control with Git in Visual Studio Code
Gutter indicators. If you open a folder that is a Git repository and begin making changes, VS Code will add useful annotations to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I don’t see why the theme has to change the gutter colors. The changed line color looks like puke honestly. For all of you who came here with the same discontent, add this to your
settings.json
to get the old colors back:@mmykhaylov sure