【问题标题】:Monaco editor AutoIndent disable摩纳哥编辑器自动缩进禁用
【发布时间】:2021-12-09 09:51:01
【问题描述】:
$(document).ready(function() {
     editor.updateOptions({'autoIndent': 'none'}); 
});

此代码不起作用。 我用错了吗? 有人请帮助我。

【问题讨论】:

标签: monaco-editor


【解决方案1】:

我找到了解决办法!! 这很好用。

const editor = monaco.editor.create(document.getElementById("container"), {
value: "function hello(){\nalert('Hello world!');}",
language: "javascript",
"autoIndent": 'none',
"formatOnPaste": true,
"formatOnType": true
});

【讨论】:

    猜你喜欢
    • 2018-07-27
    • 1970-01-01
    • 1970-01-01
    • 2021-10-19
    • 2018-01-21
    • 2018-12-18
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多