Git - remove gitlens-git from timeline provider (#172844)

This commit is contained in:
Ladislau Szomoru
2023-01-30 21:25:19 +01:00
committed by GitHub
parent fe39ab03db
commit 629d643eff

View File

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