MH Antor
MH Antor

Reputation: 363

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

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

Upvotes: 2

Views: 501

Answers (2)

Mark
Mark

Reputation: 180641

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

Upvotes: 4

mpen
mpen

Reputation: 282805

Should be the scm.diffDecorationsGutterVisibility setting:

enter image description here

Upvotes: 2

Related Questions