mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
cc65ec32c5
Upgrade ace to 1.4.12 GitOrigin-RevId: a381b3815248e710cf8f02558e8c9f74b063fc96
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;
|
|
}
|
|
});
|
|
})();
|
|
|