提交 10ed637d 编写于 作者: J Joao Moreno

💄

上级 9d3ac32d
......@@ -248,9 +248,9 @@ export class ModesContentHoverWidget extends ContentHoverWidget {
},
codeBlockRenderer: (modeId, value): string | TPromise<string> => {
const mode = modeId ? this._modeService.getMode(modeId) : this._editor.getModel().getModeId();
const getMode = mode ? TPromise.as(mode) : this._modeService.getOrCreateMode(modeId);
const getMode = mode => mode ? TPromise.as(mode) : this._modeService.getOrCreateMode(modeId);
return getMode
return getMode(mode)
.then(null, err => null)
.then(mode => `<div class="code">${ tokenizeToString(value, mode) }</div>`);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册