mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-12 08:54:28 -05:00
0e9e57cd7c
Upgrade to Ace v1.4.10 GitOrigin-RevId: 1e70b37fd93593d881ae317faa2e2ec146362db2
18 lines
No EOL
555 B
JavaScript
18 lines
No EOL
555 B
JavaScript
ace.define("ace/snippets/makefile",[], function(require, exports, module) {
|
|
"use strict";
|
|
|
|
exports.snippetText = "snippet ifeq\n\
|
|
ifeq (${1:cond0},${2:cond1})\n\
|
|
${3:code}\n\
|
|
endif\n\
|
|
";
|
|
exports.scope = "makefile";
|
|
|
|
}); (function() {
|
|
ace.require(["ace/snippets/makefile"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|
|
|