提交 a585c085 编写于 作者: A Alex Dima

Fixes #1811

上级 b592ee4f
......@@ -520,9 +520,12 @@ export default class PluginWorkbenchKeybindingService extends WorkbenchKeybindin
}
protected _invokeHandler(commandId: string, args: any): TPromise<any> {
return this._pluginService.activateByEvent('onCommand:' + commandId).then(_ => {
return super._invokeHandler(commandId, args);
});
if (this._pluginService) {
return this._pluginService.activateByEvent('onCommand:' + commandId).then(_ => {
return super._invokeHandler(commandId, args);
});
}
return TPromise.as(null);
}
private _asCommandRule(isBuiltin: boolean, idx:number, binding: ContributedKeyBinding): ICommandRule {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册