UNPKG
three-codeeditor
Version:
latest (0.1.4-seth.6)
0.1.4
0.1.4-seth.6
0.1.4-seth.5
0.1.4-seth.4
0.1.4-seth.3
0.1.4-seth.2
0.1.4-seth.1
0.1.3
0.1.2
0.1.1
codeeditor for three.js
three-codeeditor
/
vendor
/
ace
/
snippets
/
makefile.js
12 lines
(9 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
ace.
define
(
"ace/snippets/makefile"
,[
"require"
,
"exports"
,
"module"
],
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"
; });