You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.2 KiB
62 lines
1.2 KiB
|
|
var editor = CodeMirror(document.body, {
|
|
lineNumbers: true,
|
|
//styleActiveLine: true,
|
|
matchBrackets: true,
|
|
autofocus: true,
|
|
});
|
|
|
|
|
|
editor.setOption("theme", "solarized dark");
|
|
editor.setOption("indentUnit", 4);
|
|
editor.setOption("indentWithTabs", true);
|
|
editor.setOption("fullScreen", true);
|
|
|
|
editor.changeRegistered = false;
|
|
|
|
editor.on("change", function(eMirror, object) {
|
|
editor.changeRegistered = true;
|
|
|
|
});
|
|
|
|
var mac = /Mac/.test(navigator.platform);
|
|
if (mac === true) {
|
|
editor.setOption("extraKeys", {
|
|
"Cmd-V": function(cm) {
|
|
cm.replaceSelection(clipboard);
|
|
},
|
|
"Cmd-X": function(cm) {
|
|
window.document.execCommand("cut");
|
|
},
|
|
"Cmd-C": function(cm) {
|
|
window.document.execCommand("copy");
|
|
}});
|
|
}
|
|
|
|
getTextChanged = function() {
|
|
return editor.changeRegistered;
|
|
};
|
|
|
|
getText = function() {
|
|
editor.changeRegistered = false;
|
|
return editor.getValue();
|
|
};
|
|
|
|
|
|
setTextBase64 = function(text) {
|
|
editor.setValue(window.atob(text));
|
|
editor.getDoc().clearHistory();
|
|
editor.focus();
|
|
};
|
|
|
|
setText = function(text) {
|
|
editor.setValue(text);
|
|
};
|
|
|
|
setMode = function(mode) {
|
|
this.editor.setOption("mode", mode);
|
|
};
|
|
|
|
setClipboardBase64 = function(text) {
|
|
clipboard = window.atob(text);
|
|
};
|
|
|