history - implement interop between git and local history

This commit is contained in:
Benjamin Pasero
2022-03-11 13:44:43 +01:00
parent cbdd6c5d40
commit eda6a6090e
3 changed files with 21 additions and 7 deletions

View File

@@ -237,7 +237,7 @@ export class GitTimelineProvider implements TimelineProvider {
private ensureProviderRegistration() {
if (this.providerDisposable === undefined) {
this.providerDisposable = workspace.registerTimelineProvider(['file', 'git', 'vscode-remote', 'gitlens-git'], this);
this.providerDisposable = workspace.registerTimelineProvider(['file', 'git', 'vscode-remote', 'gitlens-git', 'vscode-local-history'], this);
}
}