代码之家  ›  专栏  ›  技术社区  ›  galusben

在摩纳哥编辑器中,是否有捕获格式事件的事件?

  •  1
  • galusben  · 技术社区  · 6 年前
    cont editor = monaco.editor.create(element, {
                value: text,
                language: mode,
                automaticLayout: true,
                autoIndent: true,
                contextmenu: false,
                formatOnType: true
            });
    editor.trigger('any', 'editor.action.formatDocument');
    

    是否有方法将回调传递给Trigger方法,或捕获格式化完成操作的事件?

    1 回复  |  直到 6 年前
        1
  •  0
  •   galusben    6 年前

    editor.getAction('editor.action.formatDocument').run().then(() => console.log('finished'));
    

    https://github.com/Microsoft/monaco-editor/issues/978