This commit is contained in:
parent
0bcd418dda
commit
8e888aa936
|
@ -161,6 +161,7 @@ var editors = {
|
||||||
$("#dialogGoLinePrompt").dialog("open");
|
$("#dialogGoLinePrompt").dialog("open");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// 用于覆盖 cm 默认绑定的某些快捷键功能.
|
||||||
CodeMirror.commands.doNothing = function (cm) {
|
CodeMirror.commands.doNothing = function (cm) {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -342,10 +343,7 @@ var editors = {
|
||||||
|
|
||||||
editor.setSize('100%', $(".edit-panel").height() - $(".edit-panel .tabs").height());
|
editor.setSize('100%', $(".edit-panel").height() - $(".edit-panel .tabs").height());
|
||||||
editor.setValue(data.content);
|
editor.setValue(data.content);
|
||||||
editor.setOption("mode", data.mode);
|
editor.setOption("mode", data.mode);
|
||||||
|
|
||||||
editor.setCursor(cursor);
|
|
||||||
|
|
||||||
editor.setOption("gutters", ["CodeMirror-lint-markers", "CodeMirror-foldgutter"]);
|
editor.setOption("gutters", ["CodeMirror-lint-markers", "CodeMirror-foldgutter"]);
|
||||||
|
|
||||||
if ("text/x-go" === data.mode || "application/json" === data.mode) {
|
if ("text/x-go" === data.mode || "application/json" === data.mode) {
|
||||||
|
@ -355,6 +353,8 @@ var editors = {
|
||||||
if ("application/xml" === data.mode || "text/html" === data.mode) {
|
if ("application/xml" === data.mode || "text/html" === data.mode) {
|
||||||
editor.setOption("autoCloseTags", true);
|
editor.setOption("autoCloseTags", true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
editor.setCursor(cursor);
|
||||||
|
|
||||||
wide.curEditor = editor;
|
wide.curEditor = editor;
|
||||||
editors.data.push({
|
editors.data.push({
|
||||||
|
|
Loading…
Reference in New Issue