From edcb13aaaaae78dbfe2d6e7b86f458fb8adbdd50 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Fri, 10 Mar 2017 12:01:02 -0500 Subject: [PATCH] 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) --- src/gitProvider.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gitProvider.ts b/src/gitProvider.ts index ad8f9e7..f4dacfd 100644 --- a/src/gitProvider.ts +++ b/src/gitProvider.ts @@ -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)); }