mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-23 01:35:37 -05:00
Fixes issues with file renames
And other git related edge cases
This commit is contained in:
@@ -36,7 +36,7 @@ export function activate(context: ExtensionContext) {
|
||||
if (!uri) return;
|
||||
}
|
||||
|
||||
return blameProvider.getBlameLocations(uri.path, blameRange).then(locations => {
|
||||
return blameProvider.getBlameLocations(uri.path, blameProvider.repoPath, blameRange).then(locations => {
|
||||
return commands.executeCommand(VsCodeCommands.ShowReferences, uri, range, locations);
|
||||
});
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user