6

In Visual Studio Code I wish to permanently hide the window that pops up with an inline diff in my text editor. It appears after clicking on the blue bar next to the line numbers.

window popup example

Is there a setting to disable this?

I have disabled the codelens setting, but it doesn't resolve my problem.

starball
  • 20,030
  • 7
  • 43
  • 238
Bert
  • 319
  • 4
  • 10
  • 1
    if you want to disable it try this : https://stackoverflow.com/a/52337432/4807542 and if you want to hide it only try this : https://stackoverflow.com/a/60222758/4807542 – Goba Mar 26 '20 at 08:38

1 Answers1

2

Put the following in your settings.json file:

"scm.diffDecorationsGutterAction": "none"

The description for that settings says:

Controls the behavior of Source Control diff gutter decorations.

starball
  • 20,030
  • 7
  • 43
  • 238