-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.js
246 lines (209 loc) · 7.78 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/*
Plugin: More Languages for Adobe Brackets
File: main.js
Description: A plugin to extend code and markup language support in Adobe
Brackets using the native CodeMirror language modes.
This plugin currently supports syntax highlighting and comment
hotkeys for Batch, Brainfuck, COBOL, Common Lisp, Cython, D,
Django, Fortran, HTTP, IDL, Julia, LaTeX, LiveScript,
Mathematica, Pascal, PowerShell, R,
reStructuredText (RST/reST), Solidity, sTeX, and Swift.
Source: github.com/ErickShepherd/more-languages-for-adobe-brackets
Author: Erick Edward Shepherd
E-mail: ErickShepherd@ErickShepherd.com
Website: ErickShepherd.com
GitHub: github.com/ErickShepherd
Date created: 2018-06-06
Last updated: 2021-11-05
Copyright (C) 2018 of Erick Edward Shepherd - All Rights Reserved.
This file is part of "More Languages for Adobe Brackets".
"More Languages for Adobe Brackets" is free software: you can redistribute it
and/or modify it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
"More Languages for Adobe Brackets" is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General
Public License for more details.
You should have received a copy of the GNU Affero General Public License along
with "More Languages for Adobe Brackets". If not, see
<https://www.gnu.org/licenses/>.
*/
define(function (require, exports, module) {
"use strict";
var LanguageManager = brackets.getModule("language/LanguageManager");
// Batch highlighting support.
//
// - Third-party dependency sourced from {CodeStore} Public.
// * https://www.codestore.cloud/public-snippets/6799646300799306030
// * https://stackoverflow.com/questions/53505246
//
// - Primary copyright: Franz Deschler
//
// - License: None
//
// - Contributors:
// * Franz Deschler
//
// - Minor edits made by Erick Shepherd for local plugin implementation.
//
require('./extra_modes/codemirror-batch/batch');
LanguageManager.defineLanguage("batch", {
name: "Batch",
mode: ["batch", "text/x-batch"],
fileExtensions: ["bat", "cmd"]
});
// Brainfuck highlighting support.
LanguageManager.defineLanguage("brainfuck", {
name: "Brainfuck",
mode: "brainfuck",
fileExtensions: ["bf"],
});
// COBOL highlighting support.
LanguageManager.defineLanguage("cobol", {
name: "COBOL",
mode: "cobol",
fileExtensions: ["cbl", "cob", "cpy"],
lineComment: ["*"]
});
// Common Lisp highlighting support.
LanguageManager.defineLanguage("commonlisp", {
name: "Common Lisp",
mode: "commonlisp",
fileExtensions: ["cl", "lisp"],
lineComment: [";;"]
});
// Cython highlighting support.
LanguageManager.defineLanguage("cython", {
name: "Cython",
mode: ["python", "text/x-cython"],
fileExtensions: ["pyx"],
lineComment: ["#"],
blockComment: ["\"\"\"", "\"\"\""]
});
// D highlighting support.
LanguageManager.defineLanguage("d", {
name: "D",
mode: "d",
fileExtensions: ["d"],
lineComment: ["//"],
blockComment: ["/*", "*/"]
});
// Django highlighting support.
LanguageManager.getLanguage("html").removeFileExtension(["htm", "html"]);
LanguageManager.defineLanguage("django", {
name: "Django",
mode: "django",
fileExtensions: ["dj.html", "djt", "djt.html", "htm", "html", "html.dj", "html.djt"]
});
// Fortran highlighting support.
LanguageManager.defineLanguage("fortran", {
name: "Fortran",
mode: "fortran",
fileExtensions: ["F", "F03", "F08", "F90",
"F95", "FOR", "FPP", "FTN",
"f", "f03", "f08", "f90",
"f95", "for", "fpp", "ftn"],
lineComment: ["!"],
});
// HTTP highlighting support.
LanguageManager.defineLanguage("http", {
name: "HTTP",
mode: "http",
fileExtensions: ["http", "https"]
});
// IDL highlighting support.
LanguageManager.defineLanguage("idl", {
name: "IDL",
mode: "idl",
fileExtensions: ["idl"],
lineComment: [";;"]
});
// Julia highlighting support.
LanguageManager.defineLanguage("julia", {
name: "Julia",
mode: "julia",
fileExtensions: ["jl"],
lineComment: ["#"],
blockComment: ["#=", "=#"]
});
// LiveScript highlighting support.
LanguageManager.defineLanguage("livescript", {
name: "LiveScript",
mode: "livescript",
fileExtensions: ["ls"],
lineComment: ["#"],
blockComment: ["/*", "*/"]
});
// Mathematica highlighting support.
LanguageManager.defineLanguage("mathematica", {
name: "Mathematica",
mode: "mathematica",
fileExtensions: ["m", "mt", "nb"],
blockComment: ["(*", "*)"]
});
// Pascal highlighting support.
LanguageManager.defineLanguage("pascal", {
name: "Pascal",
mode: "pascal",
fileExtensions: ["pas", "pp"],
lineComment: ["//"],
blockComment: ["(*", "*)"]
});
// PowerShell highlighting support.
LanguageManager.defineLanguage("powershell", {
name: "PowerShell",
mode: "powershell",
fileExtensions: ["ps1"],
lineComment: ["#"],
blockComment: ["<#", "#>"]
});
// R highlighting support.
LanguageManager.defineLanguage("r", {
name: "R",
mode: "r",
fileExtensions: ["R", "RData", "r", "rda", "rds", "Rproj"],
lineComment: ["#"]
});
// reStructuredText (RST / reST) highlighting support.
LanguageManager.defineLanguage("restructuredtext", {
name: "reStructuredText",
mode: "rst",
fileExtensions: ["rst", "rest", "reST", "REST"]
});
// Solidity highlighting support.
//
// - Third-party dependency sourced from GitHub:
// * /~https://github.com/alincode/codemirror-solidity
//
// - Primary copyright: alincode (Ai-Lin Liou)
//
// - License: MIT
//
// - Contributors:
// * Ai-Lin Liou
// * Janicklas Ralph
//
// - Minor edits made by Erick Shepherd for local plugin implementation.
//
require('./extra_modes/codemirror-solidity/solidity');
LanguageManager.defineLanguage("solidity", {
name: "Solidity",
mode: ["solidity", "text/x-solidity"],
fileExtensions: ["sol"]
});
// sTeX / LaTeX highlighting support.
LanguageManager.defineLanguage("stex", {
name: "sTeX",
mode: "stex",
fileExtensions: ["tex", "stex"]
});
// Swift highlighting support.
LanguageManager.defineLanguage("swift", {
name: "Swift",
mode: "swift",
fileExtensions: ["swift"],
lineComment: ["//"],
blockComment: ["/*", "*/"]
});
});