support language status command, no more pin for now

This commit is contained in:
Johannes Rieken
2021-08-20 13:04:41 +02:00
parent 2a79e2997c
commit 1fd1444123
6 changed files with 48 additions and 31 deletions

View File

@@ -186,7 +186,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
const extHostMessageService = new ExtHostMessageService(rpcProtocol, extHostLogService);
const extHostDialogs = new ExtHostDialogs(rpcProtocol);
const extHostStatusBar = new ExtHostStatusBar(rpcProtocol, extHostCommands.converter);
const extHostLanguages = new ExtHostLanguages(rpcProtocol, extHostDocuments);
const extHostLanguages = new ExtHostLanguages(rpcProtocol, extHostDocuments, extHostCommands.converter);
// Register API-ish commands
ExtHostApiCommands.register(extHostCommands);