mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
0e9e57cd7c
Upgrade to Ace v1.4.10 GitOrigin-RevId: 1e70b37fd93593d881ae317faa2e2ec146362db2
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;
|
|
}
|
|
});
|
|
})();
|
|
|