How to remove these vertical bars in vscode. I don't know if these come from any extension

Viewed 77

plase help me remove these vertical bars beside line numbers. Is this coming from any extension?enter image description here

2 Answers

Should be the scm.diffDecorationsGutterVisibility setting:

enter image description here

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",

Related