UNPKG
latex-editor
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Super Simple Collaborative Latex Editor
github.com/y-js/latex-editor
y-js/latex-editor
latex-editor
/
bower_components
/
ace-builds
/
src
/
snippets
/
makefile.js
12 lines
(9 loc)
•
248 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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"
; });