mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-27 16:40:07 +00:00
941cc7c109
- Improved ES6 support Bug: T324609 Change-Id: I22234ee259c2663a511f9285d4c43d4256e29c66
49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
ace.define("ace/mode/gitignore_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module){"use strict";
|
|
var oop = require("../lib/oop");
|
|
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
var GitignoreHighlightRules = function () {
|
|
this.$rules = {
|
|
"start": [
|
|
{
|
|
token: "comment",
|
|
regex: /^\s*#.*$/
|
|
}, {
|
|
token: "keyword",
|
|
regex: /^\s*!.*$/
|
|
}
|
|
]
|
|
};
|
|
this.normalizeRules();
|
|
};
|
|
GitignoreHighlightRules.metaData = {
|
|
fileTypes: ['gitignore'],
|
|
name: 'Gitignore'
|
|
};
|
|
oop.inherits(GitignoreHighlightRules, TextHighlightRules);
|
|
exports.GitignoreHighlightRules = GitignoreHighlightRules;
|
|
|
|
});
|
|
|
|
ace.define("ace/mode/gitignore",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/gitignore_highlight_rules"], function(require, exports, module){"use strict";
|
|
var oop = require("../lib/oop");
|
|
var TextMode = require("./text").Mode;
|
|
var GitignoreHighlightRules = require("./gitignore_highlight_rules").GitignoreHighlightRules;
|
|
var Mode = function () {
|
|
this.HighlightRules = GitignoreHighlightRules;
|
|
this.$behaviour = this.$defaultBehaviour;
|
|
};
|
|
oop.inherits(Mode, TextMode);
|
|
(function () {
|
|
this.lineCommentStart = "#";
|
|
this.$id = "ace/mode/gitignore";
|
|
}).call(Mode.prototype);
|
|
exports.Mode = Mode;
|
|
|
|
}); (function() {
|
|
ace.require(["ace/mode/gitignore"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|
|
|