aka_diesel
aka_diesel

Reputation: 101

Visual Studio Code. Disable GitLens panel on tabs

panel on tabs

How to remove this panel? It is panel from extansion GitLens. But im not found settings to disable this!

Upvotes: 10

Views: 2803

Answers (2)

Daniel Stafford
Daniel Stafford

Reputation: 611

I had to add this to my settings.json file:

"gitlens.menus": {
    "editorGroup": {
        "blame": false,
        "compare": false
    }
},

Credit goes to ronjouch.

Upvotes: 8

Matt
Matt

Reputation: 1853

Open GitLense Settings -> find "Add commands to the editor group toolbar" -> uncheck -> restart VSCode

Upvotes: 5

Related Questions