summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/CodeEditor/modules/ace/mode-plain_text.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/CodeEditor/modules/ace/mode-plain_text.js')
-rw-r--r--www/wiki/extensions/CodeEditor/modules/ace/mode-plain_text.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/www/wiki/extensions/CodeEditor/modules/ace/mode-plain_text.js b/www/wiki/extensions/CodeEditor/modules/ace/mode-plain_text.js
new file mode 100644
index 00000000..0f0c9380
--- /dev/null
+++ b/www/wiki/extensions/CodeEditor/modules/ace/mode-plain_text.js
@@ -0,0 +1,25 @@
+ace.define("ace/mode/plain_text",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/text_highlight_rules","ace/mode/behaviour"], function(require, exports, module) {
+"use strict";
+
+var oop = require("../lib/oop");
+var TextMode = require("./text").Mode;
+var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
+var Behaviour = require("./behaviour").Behaviour;
+
+var Mode = function() {
+ this.HighlightRules = TextHighlightRules;
+ this.$behaviour = new Behaviour();
+};
+
+oop.inherits(Mode, TextMode);
+
+(function() {
+ this.type = "text";
+ this.getNextLineIndent = function(state, line, tab) {
+ return '';
+ };
+ this.$id = "ace/mode/plain_text";
+}).call(Mode.prototype);
+
+exports.Mode = Mode;
+});