Monaco Editor

项目地址: [Monaco Editor](https:
//microsoft.github.io/monaco-editor/)

示例HTML

<!DOCTYPE html>
<html lang="en">

<head>
    <!-- 导入模块 -->
    <script src="https:
    //cdn.staticfile.org/monaco-editor/0.19.3/min/vs/loader.min.js"></script>
    <script>
        require.config({ paths: { 'vs': 'https:
    //cdn.staticfile.org/monaco-editor/0.19.3/min/vs' } });
        require(['vs/editor/editor.main'], function () {
            
    // 启动
            init_edit(
`function init_edit(value) {
    window.monaco.editor.create(
        document.getElementById("container"), {
        value,
    })
}`
            )
        });

        function init_edit(value) {
            window.monaco.editor.create(
                
    // 显示在哪
                document.getElementById("container"), {
                
    // 显示什么
                value,
            })
        }
    </script>
</head>

<body>
    <div id="container" style="height: 500px"></div>
</body>

</html>

配置项详解

一些写在create()里的基本配置项

 const option = {
    value: '', 
    // 编辑器创建时初始显示文字

    language: 'sql', 
    // 高亮语言

    automaticLayout: true, 
    // 自适应宽高

    foldingStrategy: 'indentation', 
    // 代码可分小段折叠

    autoClosingBrackets: 'always', 
    // 是否自动添加结束括号(包括中括号) "always" | "languageDefined" | "beforeWhitespace" | "never"
    
    autoClosingDelete: 'always', 
    // 是否自动删除结束括号(包括中括号) "always" | "never" | "auto"

    autoClosingQuotes: 'always', 
    // 是否自动添加结束的单引号 双引号 "always" | "languageDefined" | "beforeWhitespace" | "never"

    autoIndent: 'None', 
    // 控制编辑器在用户键入、粘贴、移动或缩进行时是否应自动调整缩进

    comments: {
         ignoreEmptyLines: true, 
        // 插入行注释时忽略空行。默认为真。

         insertSpace: true 
        // 在行注释标记之后和块注释标记内插入一个空格。默认为真。
    }, 

    cursorBlinking: 'Solid', 
    // 光标动画样式

    cursorSmoothCaretAnimation: true, 
    // 是否启用光标平滑插入动画  当你在快速输入文字的时候 光标是直接平滑的移动还是直接"闪现"到当前文字所处位置

    cursorSurroundingLines: 0, 
    // 光标环绕行数 当文字输入超过屏幕时 可以看见右侧滚动条中光标所处位置是在滚动条中间还是顶部还是底部 即光标环绕行数 环绕行数越大 光标在滚动条中位置越居中

    cursorSurroundingLinesStyle: 'all', 
    // "default" | "all" 光标环绕样式

    cursorWidth: 2, 
    // <=25 光标宽度

    minimap: { 
    // 关闭代码缩略图
        enabled: false 
        // 是否启用预览图
    },

    overviewRulerBorder: false, 
    // 是否应围绕概览标尺绘制边框

    folding: true, 
    // 是否启用代码折叠

    scrollBeyondLastLine: false, 
    // 设置编辑器是否可以滚动到最后一行之后

    renderLineHighlight: 'all', 
    // 当前行突出显示方式  "all" | "line" | "none" | "gutter"

    theme: 'vs' 
    // 官方自带三种主题vs, hc-black, or vs-dark
  }