SCM - add input box value provider proposal (#198232)

* Initial implementation

* Remove new toolbar widget

* Remove TestCommitMessageProvider2

* Remove more changes
This commit is contained in:
Ladislau Szomoru
2023-11-14 19:59:05 +01:00
committed by GitHub
parent b0584f4202
commit e121560310
8 changed files with 155 additions and 4 deletions

View File

@@ -1168,6 +1168,10 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
},
createSourceControl(id: string, label: string, rootUri?: vscode.Uri) {
return extHostSCM.createSourceControl(extension, id, label, rootUri);
},
registerSourceControlInputBoxValueProvider(provider: vscode.SourceControlInputBoxValueProvider): vscode.Disposable {
checkProposedApiEnabled(extension, 'scmInputBoxValueProvider');
return extHostSCM.registerSourceControlInputBoxValueProvider(extension, provider);
}
};