Garfield Lasaga
Garfield Lasaga

Reputation: 418

VSCode three dots at the top of the editor

As soon as I start typing anything, three dots show up at the top of the editor screen, which "shifts" my code below one string. How can I turn off this feature, which seems to be useless?

enter image description here

Upvotes: 16

Views: 3854

Answers (6)

Pnd Forever
Pnd Forever

Reputation: 1

Disable this option

disable this option

This is for GitLens 15.6.2.

Upvotes: 0

Zack Morris
Zack Morris

Reputation: 4823

svet's answer to disable recent changes in VS Code settings didn't quite remove the inline GitLens comments for me, but disabling authors as well did:

Searching for gitlens recent change:

enter image description here

Searching for gitlens authors:

enter image description here

Before:

enter image description here

After:

enter image description here

Note that hovering over the selected line's GitLens comment to show the popup still works:

enter image description here

Upvotes: 2

svet
svet

Reputation: 12048

Turn off (uncheck) only Gitlens › CodeLens › RecentChange and keep the rest of the CodeLens functionality:

enter image description here

The image below shows what Gitlens › CodeLens › RecentChange contols. The text "Eric Amondio, 3 minutes ago | 1 author (Eric Amondio)" will be hidden if the option is turned off.

enter image description here

Note: Even though the answer provided by kschnack will also fix the problem, you should turn off only the specific option and not the whole Gitlens › CodeLens functionality.

Upvotes: 2

Kamil
Kamil

Reputation: 644

in my case, SHOWEOL extension cause this. disable it.

Upvotes: 0

kschnack
kschnack

Reputation: 432

I toggled off the Code Lens option in the GitLens settings - that did the job

enter image description here

Upvotes: 20

Daniel Morbeck
Daniel Morbeck

Reputation: 31

In my case, the extension GitLens is causing the issue

Upvotes: 3

Related Questions