Ace editor 在线网页版的vscode!代码编辑器

Ace是一个功能非常强大的编辑器。它实现了语法着色,缩进,代码提示功能。且具有大量的主题,支持大量语言。

20210422154446.png

20210422154446.png

官网地址:ace.c9.io/
Github: github.com/ajaxorg/ace/
vue版:github.com/chairuosen/vue2-ace-edi...
中文文档:www.jianshu.com/p/8a4a5e273538


    <script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.6/ace.js" type="text/javascript"
            charset="utf-8"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.6/ext-language_tools.js" 
            type="text/javascript" charset="utf-8"></script>
           <pre id="code" class="ace_editor" style="min-height:400px">
                    <textarea class="ace_text-input"></textarea>
                </pre>

<script>
    //初始化对象
    editor = ace.edit("code");

    //设置风格和语言(更多风格和语言,请到github上相应目录查看)
    theme = "monokai"
    language = "java"
    editor.setTheme("ace/theme/" + theme);
    editor.session.setMode("ace/mode/" + language);

    //字体大小
    editor.setFontSize(18);

    //设置只读(true时只读,用于展示代码)
    editor.setReadOnly(false);

    //自动换行,设置为off关闭
    editor.setOption("wrap", "free")

    //启用提示菜单
    ace.require("ace/mode/java");
    editor.setOptions({
        enableBasicAutocompletion: true,
        enableSnippets: true,
        enableLiveAutocompletion: true
    });
</script>
本作品采用《CC 协议》,转载必须注明作者和本文链接
学取进之以为乐
讨论数量: 1

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!