As per subject. Here a screenshot.

Thanks for your work!
Same for me.
Weirdly the annotations show in a new file if I create one and stage the changes, but then they stop showing if I then close the application and reopen it.
Can you both provide more details on this? Did this stop working recently? Did GitLens work before, and then you upgraded? You upgraded vscode? You installed a new extension? etc?
Also can you both please enable output channel logging by setting "gitlens.outputLevel": "debug" in your settings.json. This will enable logging to the GitLens channel in the Output pane. Once enabled, please reproduce the issue (if possible) and attach the log lines from the GitLens channel.
@meden from your screenshot it looks like there is some character to the right of the selected line -- is that just whitespace or something?
Not sure when this started happening. Actually, I had the feature disabled on my previous machine (Mac OS), but it was definitely working (that's why I disabled it... :smile:). Then I switched to Linux (at last), and I wanted to try the feature again, but with no luck.
@meden from your screenshot it looks like there is some character to the right of the selected line -- is that just whitespace or something?
Indeed there is an empty annotation when the feature is enabled, which disappears on disabling it. Hovering on this empty annotation triggers the commit detail popup as it should (I set "gitlens.hovers.annotations.over": "annotation").
I found the culprit: it is an incompatibility with the extension code-eol.
I got it because I was looking to a file with no last-line line ending, and there was the git blame annotation.
Disabling the code-eol extension got back the GitLens blame annotations.
After enabling debug, it looks like mine is a folder case issue.
I lowercased my root project folder, and the uppercased is still referenced in the debug log.
If I rename the root folder to something entirely different, and re-open vscode, the blames appear again.
@Toddish this sounds like another case of https://github.com/Microsoft/vscode/issues/12448. The casing of the folder on disk needs to exactly match the casing of the folder opened in vscode
Yeah, definitely.
Consider my issue resolved. Renaming the directory works fine for me and gitlens is working as expected 馃憤
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
I found the culprit: it is an incompatibility with the extension code-eol.
I got it because I was looking to a file with no last-line line ending, and there was the git blame annotation.
Disabling the
code-eolextension got back the GitLens blame annotations.