mirror of
https://github.com/ducbao414/win32.run.git
synced 2025-12-17 17:52:50 +09:00
init the awkward code
This commit is contained in:
16
static/html/notepad/ace/snippets/snippets.js
Normal file
16
static/html/notepad/ace/snippets/snippets.js
Normal file
@@ -0,0 +1,16 @@
|
||||
define("ace/snippets/snippets.snippets",["require","exports","module"], function(require, exports, module){module.exports = "# snippets for making snippets :)\nsnippet snip\n\tsnippet ${1:trigger}\n\t\t${2}\nsnippet msnip\n\tsnippet ${1:trigger} ${2:description}\n\t\t${3}\nsnippet v\n\t{VISUAL}\n";
|
||||
|
||||
});
|
||||
|
||||
define("ace/snippets/snippets",["require","exports","module","ace/snippets/snippets.snippets"], function(require, exports, module){"use strict";
|
||||
exports.snippetText = require("./snippets.snippets");
|
||||
exports.scope = "snippets";
|
||||
|
||||
}); (function() {
|
||||
window.require(["ace/snippets/snippets"], function(m) {
|
||||
if (typeof module == "object" && typeof exports == "object" && module) {
|
||||
module.exports = m;
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user