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
23 lines
No EOL
633 B
JavaScript
23 lines
No EOL
633 B
JavaScript
ace.define("ace/snippets/maze",[], function(require, exports, module) {
|
|
"use strict";
|
|
|
|
exports.snippetText = "snippet >\n\
|
|
description assignment\n\
|
|
scope maze\n\
|
|
-> ${1}= ${2}\n\
|
|
\n\
|
|
snippet >\n\
|
|
description if\n\
|
|
scope maze\n\
|
|
-> IF ${2:**} THEN %${3:L} ELSE %${4:R}\n\
|
|
";
|
|
exports.scope = "maze";
|
|
|
|
}); (function() {
|
|
ace.require(["ace/snippets/maze"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|
|
|