Reputation: 163
While using Eclipse and IntelliJ for Java development I got used to seeing the annotation lines in edit mode right next to the changes I'm working on. Well, apparently Visual Studio always opens the annotations to a separate uneditable window.
So the question is: is it possible (eg. with a plugin) to show the annotations (git in this case) in the editing view similarly as Eclipse and IntelliJ allow.
Upvotes: 3
Views: 2269
Reputation: 567
I interpret your question as asking for Inline Git Blame, similar to the GitLens extension on Visual Studio Code.
In Visual Studio 2022, this extension does the job: https://marketplace.visualstudio.com/items?itemName=jotting89.GitLineCodeLens&ssr=false#review-details
Upvotes: 0