Adds blame and active line annotation support to git diff split view (right side)

Adds command (compare, copy sha/message, etc) support to git diff split view (right side)
This commit is contained in:
Eric Amodio
2017-03-10 12:01:02 -05:00
parent eaea44872c
commit edcb13aaaa

View File

@@ -623,6 +623,7 @@ export class GitProvider extends Disposable {
isEditorBlameable(editor: TextEditor): boolean {
return (editor.viewColumn !== undefined ||
editor.document.uri.scheme === DocumentSchemes.File ||
editor.document.uri.scheme === DocumentSchemes.Git ||
this.hasGitUriForFile(editor));
}