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

问题描述 投票:1回答:1
cont editor = monaco.editor.create(element, {
            value: text,
            language: mode,
            automaticLayout: true,
            autoIndent: true,
            contextmenu: false,
            formatOnType: true
        });
editor.trigger('any', 'editor.action.formatDocument');

有没有办法将回调传递给触发器方法,或捕获格式完成操作的事件?

javascript visual-studio-code monaco-editor
1个回答
0
投票

使用promise后,以下语法将在执行操作后运行console.log语句。

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

回答:

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

© www.soinside.com 2019 - 2024. All rights reserved.