plase help me remove these vertical bars beside line numbers. Is this coming from any extension?
CodePudding user response:
Should be the scm.diffDecorationsGutterVisibility
setting:
CodePudding user response:
Since you pointed to the vertical bars in the overview
area as well the gutter (next to the line numbers), the general setting to control all scm diff indicators is:
// Controls diff decorations in the editor.
// - all: Show the diff decorations in all available locations.
// - gutter: Show the diff decorations only in the editor gutter.// - overview: Show the diff decorations only in the overview ruler.
// - minimap: Show the diff decorations only in the minimap.
// - none: Do not show the diff decorations.
"scm.diffDecorations": "all",