cont editor = monaco.editor.create(element, {
value: text,
language: mode,
automaticLayout: true,
autoIndent: true,
contextmenu: false,
formatOnType: true
});
editor.trigger('any', 'editor.action.formatDocument');
是否可以将回调传递给触发方法,或捕获格式完成操作的事件?
答案 0 :(得分:0)
在执行动作后,将使用诺言运行以下console.log语句。
editor.getAction('editor.action.formatDocument').run().then(() => console.log('finished'));
答案: