我已经将 Code Mirror 作为插件实现到 CMS 系统中。
我有一个问题,如果我选择多行并按 Tab,这些行将被删除。
这不会在 Code Mirror 演示网站上发生。我找不到启用或禁用多个缩进的配置选项。
这是我的配置代码:
this.CodeArea = CodeMirror.fromTextArea(codeArea, {
lineNumbers: true,
mode: { name: "xml", htmlMode: true },
onChange : function (editor) {
editor.save();
}
});
我不确定我错过了什么。有任何想法吗?