Projekt

Obecné

Profil

Stáhnout (583 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
ace.define("ace/snippets/makefile",["require","exports","module"], function(require, exports, module) {
2
"use strict";
3

    
4
exports.snippetText = "snippet ifeq\n\
5
	ifeq (${1:cond0},${2:cond1})\n\
6
		${3:code}\n\
7
	endif\n\
8
";
9
exports.scope = "makefile";
10

    
11
});                (function() {
12
                    ace.require(["ace/snippets/makefile"], function(m) {
13
                        if (typeof module == "object" && typeof exports == "object" && module) {
14
                            module.exports = m;
15
                        }
16
                    });
17
                })();
18
            
(90-90/171)