Reputation: 363
plase help me remove these vertical bars beside line numbers. Is this coming from any extension?
Upvotes: 2
Views: 501
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