ol-github-linguist 2.4.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/bin/linguist +42 -0
- data/lib/linguist.rb +5 -0
- data/lib/linguist/blob_helper.rb +352 -0
- data/lib/linguist/classifier.rb +123 -0
- data/lib/linguist/file_blob.rb +56 -0
- data/lib/linguist/generated.rb +162 -0
- data/lib/linguist/language.rb +483 -0
- data/lib/linguist/languages.yml +1302 -0
- data/lib/linguist/md5.rb +38 -0
- data/lib/linguist/popular.yml +29 -0
- data/lib/linguist/repository.rb +95 -0
- data/lib/linguist/samples.json +31082 -0
- data/lib/linguist/samples.rb +98 -0
- data/lib/linguist/tokenizer.rb +197 -0
- data/lib/linguist/vendor.yml +98 -0
- metadata +129 -0
@@ -0,0 +1,1302 @@
|
|
1
|
+
# Defines all Languages known to GitHub.
|
2
|
+
#
|
3
|
+
# All languages have an associated lexer for syntax highlighting. It
|
4
|
+
# defaults to name.downcase, which covers most cases. Make sure the
|
5
|
+
# lexer exists in lexers.yml. This is a list of available in our
|
6
|
+
# version of pygments.
|
7
|
+
#
|
8
|
+
# type - Either data, programming, markup, or nil
|
9
|
+
# lexer - An explicit lexer String (defaults to name.downcase)
|
10
|
+
# aliases - An Array of additional aliases (implicitly
|
11
|
+
# includes name.downcase)
|
12
|
+
# ace_mode - A String name of Ace Mode (if available)
|
13
|
+
# wrap - Boolean wrap to enable line wrapping (default: false)
|
14
|
+
# extension - An Array of associated extensions
|
15
|
+
# primary_extension - A String for the main extension associated with
|
16
|
+
# the language. Must be unique. Used when a Language is picked
|
17
|
+
# from a dropdown and we need to automatically choose an
|
18
|
+
# extension.
|
19
|
+
# searchable - Boolean flag to enable searching (defaults to true)
|
20
|
+
# search_term - Deprecated: Some languages maybe indexed under a
|
21
|
+
# different alias. Avoid defining new exceptions.
|
22
|
+
# color - CSS hex color to represent the language.
|
23
|
+
#
|
24
|
+
# Any additions or modifications (even trivial) should have corresponding
|
25
|
+
# test change in `test/test_blob.rb`.
|
26
|
+
#
|
27
|
+
# Please keep this list alphabetized.
|
28
|
+
|
29
|
+
ASP:
|
30
|
+
type: programming
|
31
|
+
color: "#6a40fd"
|
32
|
+
lexer: aspx-vb
|
33
|
+
search_term: aspx-vb
|
34
|
+
aliases:
|
35
|
+
- aspx
|
36
|
+
- aspx-vb
|
37
|
+
primary_extension: .asp
|
38
|
+
extensions:
|
39
|
+
- .asax
|
40
|
+
- .ascx
|
41
|
+
- .ashx
|
42
|
+
- .asmx
|
43
|
+
- .aspx
|
44
|
+
- .axd
|
45
|
+
|
46
|
+
ActionScript:
|
47
|
+
type: programming
|
48
|
+
lexer: ActionScript 3
|
49
|
+
color: "#e3491a"
|
50
|
+
search_term: as3
|
51
|
+
aliases:
|
52
|
+
- as3
|
53
|
+
primary_extension: .as
|
54
|
+
|
55
|
+
Ada:
|
56
|
+
type: programming
|
57
|
+
color: "#02f88c"
|
58
|
+
primary_extension: .adb
|
59
|
+
extensions:
|
60
|
+
- .ads
|
61
|
+
|
62
|
+
ApacheConf:
|
63
|
+
type: markup
|
64
|
+
aliases:
|
65
|
+
- apache
|
66
|
+
primary_extension: .apacheconf
|
67
|
+
|
68
|
+
Apex:
|
69
|
+
type: programming
|
70
|
+
lexer: Text only
|
71
|
+
primary_extension: .cls
|
72
|
+
|
73
|
+
AppleScript:
|
74
|
+
type: programming
|
75
|
+
aliases:
|
76
|
+
- osascript
|
77
|
+
primary_extension: .applescript
|
78
|
+
|
79
|
+
Arc:
|
80
|
+
type: programming
|
81
|
+
color: "#ca2afe"
|
82
|
+
lexer: Text only
|
83
|
+
primary_extension: .arc
|
84
|
+
|
85
|
+
Arduino:
|
86
|
+
type: programming
|
87
|
+
color: "#bd79d1"
|
88
|
+
lexer: C++
|
89
|
+
primary_extension: .ino
|
90
|
+
|
91
|
+
Assembly:
|
92
|
+
type: programming
|
93
|
+
lexer: NASM
|
94
|
+
color: "#a67219"
|
95
|
+
search_term: nasm
|
96
|
+
aliases:
|
97
|
+
- nasm
|
98
|
+
primary_extension: .asm
|
99
|
+
|
100
|
+
Augeas:
|
101
|
+
type: programming
|
102
|
+
primary_extension: .aug
|
103
|
+
|
104
|
+
AutoHotkey:
|
105
|
+
type: programming
|
106
|
+
lexer: autohotkey
|
107
|
+
color: "#6594b9"
|
108
|
+
aliases:
|
109
|
+
- ahk
|
110
|
+
primary_extension: .ahk
|
111
|
+
|
112
|
+
Batchfile:
|
113
|
+
type: programming
|
114
|
+
group: Shell
|
115
|
+
search_term: bat
|
116
|
+
aliases:
|
117
|
+
- bat
|
118
|
+
primary_extension: .bat
|
119
|
+
extensions:
|
120
|
+
- .cmd
|
121
|
+
|
122
|
+
Befunge:
|
123
|
+
primary_extension: .befunge
|
124
|
+
|
125
|
+
BlitzMax:
|
126
|
+
primary_extension: .bmx
|
127
|
+
|
128
|
+
Boo:
|
129
|
+
type: programming
|
130
|
+
color: "#d4bec1"
|
131
|
+
primary_extension: .boo
|
132
|
+
|
133
|
+
Brainfuck:
|
134
|
+
primary_extension: .b
|
135
|
+
extensions:
|
136
|
+
- .bf
|
137
|
+
|
138
|
+
Bro:
|
139
|
+
type: programming
|
140
|
+
primary_extension: .bro
|
141
|
+
|
142
|
+
C:
|
143
|
+
type: programming
|
144
|
+
color: "#555"
|
145
|
+
primary_extension: .c
|
146
|
+
extensions:
|
147
|
+
- .w
|
148
|
+
|
149
|
+
C#:
|
150
|
+
type: programming
|
151
|
+
ace_mode: csharp
|
152
|
+
search_term: csharp
|
153
|
+
color: "#5a25a2"
|
154
|
+
aliases:
|
155
|
+
- csharp
|
156
|
+
primary_extension: .cs
|
157
|
+
|
158
|
+
C++:
|
159
|
+
type: programming
|
160
|
+
ace_mode: c_cpp
|
161
|
+
search_term: cpp
|
162
|
+
color: "#f34b7d"
|
163
|
+
aliases:
|
164
|
+
- cpp
|
165
|
+
primary_extension: .cpp
|
166
|
+
extensions:
|
167
|
+
- .C
|
168
|
+
- .c++
|
169
|
+
- .cxx
|
170
|
+
- .H
|
171
|
+
- .h++
|
172
|
+
- .hh
|
173
|
+
- .hxx
|
174
|
+
- .tcc
|
175
|
+
- .fmt
|
176
|
+
|
177
|
+
C-ObjDump:
|
178
|
+
type: data
|
179
|
+
lexer: c-objdump
|
180
|
+
primary_extension: .c-objdump
|
181
|
+
|
182
|
+
C2hs Haskell:
|
183
|
+
type: programming
|
184
|
+
lexer: Haskell
|
185
|
+
group: Haskell
|
186
|
+
aliases:
|
187
|
+
- c2hs
|
188
|
+
primary_extension: .chs
|
189
|
+
|
190
|
+
CMake:
|
191
|
+
primary_extension: .cmake
|
192
|
+
extensions:
|
193
|
+
- .cmake.in
|
194
|
+
filenames:
|
195
|
+
- CMakeLists.txt
|
196
|
+
|
197
|
+
CSS:
|
198
|
+
ace_mode: css
|
199
|
+
primary_extension: .css
|
200
|
+
|
201
|
+
Ceylon:
|
202
|
+
type: programming
|
203
|
+
lexer: Text only
|
204
|
+
primary_extension: .ceylon
|
205
|
+
|
206
|
+
ChucK:
|
207
|
+
lexer: Java
|
208
|
+
primary_extension: .ck
|
209
|
+
|
210
|
+
Clojure:
|
211
|
+
type: programming
|
212
|
+
ace_mode: clojure
|
213
|
+
color: "#db5855"
|
214
|
+
primary_extension: .clj
|
215
|
+
extensions:
|
216
|
+
- .cljs
|
217
|
+
|
218
|
+
CoffeeScript:
|
219
|
+
type: programming
|
220
|
+
ace_mode: coffee
|
221
|
+
color: "#244776"
|
222
|
+
aliases:
|
223
|
+
- coffee
|
224
|
+
- coffee-script
|
225
|
+
primary_extension: .coffee
|
226
|
+
extensions:
|
227
|
+
- ._coffee
|
228
|
+
- .cson
|
229
|
+
filenames:
|
230
|
+
- Cakefile
|
231
|
+
|
232
|
+
ColdFusion:
|
233
|
+
type: programming
|
234
|
+
lexer: Coldfusion HTML
|
235
|
+
ace_mode: coldfusion
|
236
|
+
color: "#ed2cd6"
|
237
|
+
search_term: cfm
|
238
|
+
aliases:
|
239
|
+
- cfm
|
240
|
+
primary_extension: .cfm
|
241
|
+
extensions:
|
242
|
+
- .cfc
|
243
|
+
|
244
|
+
Common Lisp:
|
245
|
+
type: programming
|
246
|
+
color: "#3fb68b"
|
247
|
+
aliases:
|
248
|
+
- lisp
|
249
|
+
primary_extension: .lisp
|
250
|
+
extensions:
|
251
|
+
- .lsp
|
252
|
+
- .ny
|
253
|
+
|
254
|
+
Coq:
|
255
|
+
type: programming
|
256
|
+
primary_extension: .coq
|
257
|
+
|
258
|
+
Cpp-ObjDump:
|
259
|
+
type: data
|
260
|
+
lexer: cpp-objdump
|
261
|
+
primary_extension: .cppobjdump
|
262
|
+
extensions:
|
263
|
+
- .c++objdump
|
264
|
+
- .cxx-objdump
|
265
|
+
|
266
|
+
Cucumber:
|
267
|
+
lexer: Gherkin
|
268
|
+
primary_extension: .feature
|
269
|
+
|
270
|
+
Cython:
|
271
|
+
type: programming
|
272
|
+
group: Python
|
273
|
+
primary_extension: .pyx
|
274
|
+
extensions:
|
275
|
+
- .pxd
|
276
|
+
- .pxi
|
277
|
+
|
278
|
+
D:
|
279
|
+
type: programming
|
280
|
+
color: "#fcd46d"
|
281
|
+
primary_extension: .d
|
282
|
+
extensions:
|
283
|
+
- .di
|
284
|
+
|
285
|
+
D-ObjDump:
|
286
|
+
type: data
|
287
|
+
lexer: d-objdump
|
288
|
+
primary_extension: .d-objdump
|
289
|
+
|
290
|
+
Darcs Patch:
|
291
|
+
search_term: dpatch
|
292
|
+
aliases:
|
293
|
+
- dpatch
|
294
|
+
primary_extension: .darcspatch
|
295
|
+
extensions:
|
296
|
+
- .dpatch
|
297
|
+
|
298
|
+
Dart:
|
299
|
+
type: programming
|
300
|
+
primary_extension: .dart
|
301
|
+
|
302
|
+
Delphi:
|
303
|
+
type: programming
|
304
|
+
color: "#b0ce4e"
|
305
|
+
primary_extension: .pas
|
306
|
+
extensions:
|
307
|
+
- .lpr
|
308
|
+
|
309
|
+
DCPU-16 ASM:
|
310
|
+
type: programming
|
311
|
+
lexer: dasm16
|
312
|
+
primary_extension: .dasm16
|
313
|
+
extensions:
|
314
|
+
- .dasm
|
315
|
+
aliases:
|
316
|
+
- dasm16
|
317
|
+
|
318
|
+
Diff:
|
319
|
+
primary_extension: .diff
|
320
|
+
|
321
|
+
Dylan:
|
322
|
+
type: programming
|
323
|
+
color: "#3ebc27"
|
324
|
+
primary_extension: .dylan
|
325
|
+
|
326
|
+
Ecere Projects:
|
327
|
+
type: data
|
328
|
+
group: JavaScript
|
329
|
+
lexer: JSON
|
330
|
+
primary_extension: .epj
|
331
|
+
|
332
|
+
Ecl:
|
333
|
+
type: programming
|
334
|
+
color: "#8a1267"
|
335
|
+
primary_extension: .ecl
|
336
|
+
lexer: ECL
|
337
|
+
extensions:
|
338
|
+
- .eclxml
|
339
|
+
|
340
|
+
Eiffel:
|
341
|
+
type: programming
|
342
|
+
lexer: Text only
|
343
|
+
color: "#946d57"
|
344
|
+
primary_extension: .e
|
345
|
+
|
346
|
+
Elixir:
|
347
|
+
type: programming
|
348
|
+
color: "#6e4a7e"
|
349
|
+
primary_extension: .ex
|
350
|
+
extensions:
|
351
|
+
- .exs
|
352
|
+
|
353
|
+
Elm:
|
354
|
+
type: programming
|
355
|
+
lexer: Haskell
|
356
|
+
group: Haskell
|
357
|
+
primary_extension: .elm
|
358
|
+
|
359
|
+
Emacs Lisp:
|
360
|
+
type: programming
|
361
|
+
lexer: Scheme
|
362
|
+
color: "#c065db"
|
363
|
+
aliases:
|
364
|
+
- elisp
|
365
|
+
- emacs
|
366
|
+
primary_extension: .el
|
367
|
+
extensions:
|
368
|
+
- .emacs
|
369
|
+
|
370
|
+
Erlang:
|
371
|
+
type: programming
|
372
|
+
color: "#949e0e"
|
373
|
+
primary_extension: .erl
|
374
|
+
extensions:
|
375
|
+
- .hrl
|
376
|
+
|
377
|
+
F#:
|
378
|
+
type: programming
|
379
|
+
lexer: FSharp
|
380
|
+
color: "#b845fc"
|
381
|
+
search_term: ocaml
|
382
|
+
primary_extension: .fs
|
383
|
+
extensions:
|
384
|
+
- .fsi
|
385
|
+
- .fsx
|
386
|
+
|
387
|
+
FORTRAN:
|
388
|
+
type: programming
|
389
|
+
lexer: Fortran
|
390
|
+
color: "#4d41b1"
|
391
|
+
primary_extension: .f90
|
392
|
+
extensions:
|
393
|
+
- .F
|
394
|
+
- .F03
|
395
|
+
- .F08
|
396
|
+
- .F77
|
397
|
+
- .F90
|
398
|
+
- .F95
|
399
|
+
- .FOR
|
400
|
+
- .FPP
|
401
|
+
- .f
|
402
|
+
- .f03
|
403
|
+
- .f08
|
404
|
+
- .f77
|
405
|
+
- .f95
|
406
|
+
- .for
|
407
|
+
- .fpp
|
408
|
+
|
409
|
+
Factor:
|
410
|
+
type: programming
|
411
|
+
color: "#636746"
|
412
|
+
primary_extension: .factor
|
413
|
+
|
414
|
+
Fancy:
|
415
|
+
type: programming
|
416
|
+
color: "#7b9db4"
|
417
|
+
primary_extension: .fy
|
418
|
+
extensions:
|
419
|
+
- .fancypack
|
420
|
+
filenames:
|
421
|
+
- Fakefile
|
422
|
+
|
423
|
+
Fantom:
|
424
|
+
type: programming
|
425
|
+
color: "#dbded5"
|
426
|
+
primary_extension: .fan
|
427
|
+
|
428
|
+
Forth:
|
429
|
+
type: programming
|
430
|
+
primary_extension: .fth
|
431
|
+
color: "#341708"
|
432
|
+
lexer: Text only
|
433
|
+
|
434
|
+
GAS:
|
435
|
+
type: programming
|
436
|
+
group: Assembly
|
437
|
+
primary_extension: .s
|
438
|
+
extensions:
|
439
|
+
- .S
|
440
|
+
|
441
|
+
Genshi:
|
442
|
+
primary_extension: .kid
|
443
|
+
|
444
|
+
Gentoo Ebuild:
|
445
|
+
group: Shell
|
446
|
+
lexer: Bash
|
447
|
+
primary_extension: .ebuild
|
448
|
+
|
449
|
+
Gentoo Eclass:
|
450
|
+
group: Shell
|
451
|
+
lexer: Bash
|
452
|
+
primary_extension: .eclass
|
453
|
+
|
454
|
+
Gettext Catalog:
|
455
|
+
search_term: pot
|
456
|
+
searchable: false
|
457
|
+
aliases:
|
458
|
+
- pot
|
459
|
+
primary_extension: .po
|
460
|
+
extensions:
|
461
|
+
- .pot
|
462
|
+
|
463
|
+
Go:
|
464
|
+
type: programming
|
465
|
+
color: "#8d04eb"
|
466
|
+
primary_extension: .go
|
467
|
+
|
468
|
+
Gosu:
|
469
|
+
type: programming
|
470
|
+
color: "#82937f"
|
471
|
+
primary_extension: .gs
|
472
|
+
|
473
|
+
Groff:
|
474
|
+
primary_extension: .man
|
475
|
+
extensions:
|
476
|
+
- '.1'
|
477
|
+
- '.2'
|
478
|
+
- '.3'
|
479
|
+
- '.4'
|
480
|
+
- '.5'
|
481
|
+
- '.6'
|
482
|
+
- '.7'
|
483
|
+
|
484
|
+
Groovy:
|
485
|
+
type: programming
|
486
|
+
ace_mode: groovy
|
487
|
+
color: "#e69f56"
|
488
|
+
primary_extension: .groovy
|
489
|
+
|
490
|
+
Groovy Server Pages:
|
491
|
+
group: Groovy
|
492
|
+
lexer: Java Server Page
|
493
|
+
aliases:
|
494
|
+
- gsp
|
495
|
+
primary_extension: .gsp
|
496
|
+
|
497
|
+
HTML:
|
498
|
+
type: markup
|
499
|
+
ace_mode: html
|
500
|
+
aliases:
|
501
|
+
- xhtml
|
502
|
+
primary_extension: .html
|
503
|
+
extensions:
|
504
|
+
- .htm
|
505
|
+
- .xhtml
|
506
|
+
|
507
|
+
HTML+Django:
|
508
|
+
type: markup
|
509
|
+
group: HTML
|
510
|
+
lexer: HTML+Django/Jinja
|
511
|
+
primary_extension: .mustache # TODO: This is incorrect
|
512
|
+
extensions:
|
513
|
+
- .mustache
|
514
|
+
|
515
|
+
HTML+ERB:
|
516
|
+
type: markup
|
517
|
+
group: HTML
|
518
|
+
lexer: RHTML
|
519
|
+
aliases:
|
520
|
+
- erb
|
521
|
+
primary_extension: .erb
|
522
|
+
extensions:
|
523
|
+
- .html.erb
|
524
|
+
|
525
|
+
HTML+PHP:
|
526
|
+
type: markup
|
527
|
+
group: HTML
|
528
|
+
primary_extension: .phtml
|
529
|
+
|
530
|
+
HTTP:
|
531
|
+
type: data
|
532
|
+
primary_extension: .http
|
533
|
+
|
534
|
+
Haml:
|
535
|
+
group: HTML
|
536
|
+
type: markup
|
537
|
+
primary_extension: .haml
|
538
|
+
|
539
|
+
Handlebars:
|
540
|
+
type: markup
|
541
|
+
lexer: Text only
|
542
|
+
primary_extension: .handlebars
|
543
|
+
|
544
|
+
Haskell:
|
545
|
+
type: programming
|
546
|
+
color: "#29b544"
|
547
|
+
primary_extension: .hs
|
548
|
+
extensions:
|
549
|
+
- .hsc
|
550
|
+
|
551
|
+
Haxe:
|
552
|
+
type: programming
|
553
|
+
lexer: haXe
|
554
|
+
ace_mode: haxe
|
555
|
+
color: "#346d51"
|
556
|
+
primary_extension: .hx
|
557
|
+
extensions:
|
558
|
+
- .hxsl
|
559
|
+
|
560
|
+
INI:
|
561
|
+
type: data
|
562
|
+
extensions:
|
563
|
+
- .cfg
|
564
|
+
- .ini
|
565
|
+
- .prefs
|
566
|
+
- .properties
|
567
|
+
primary_extension: .ini
|
568
|
+
|
569
|
+
IRC log:
|
570
|
+
lexer: IRC logs
|
571
|
+
search_term: irc
|
572
|
+
aliases:
|
573
|
+
- irc
|
574
|
+
primary_extension: .irclog
|
575
|
+
extensions:
|
576
|
+
- .weechatlog
|
577
|
+
|
578
|
+
Io:
|
579
|
+
type: programming
|
580
|
+
color: "#a9188d"
|
581
|
+
primary_extension: .io
|
582
|
+
|
583
|
+
Ioke:
|
584
|
+
type: programming
|
585
|
+
color: "#078193"
|
586
|
+
primary_extension: .ik
|
587
|
+
|
588
|
+
JSON:
|
589
|
+
type: data
|
590
|
+
group: JavaScript
|
591
|
+
ace_mode: json
|
592
|
+
searchable: false
|
593
|
+
primary_extension: .json
|
594
|
+
|
595
|
+
Java:
|
596
|
+
type: programming
|
597
|
+
ace_mode: java
|
598
|
+
color: "#b07219"
|
599
|
+
primary_extension: .java
|
600
|
+
extensions:
|
601
|
+
- .pde
|
602
|
+
|
603
|
+
Java Server Pages:
|
604
|
+
group: Java
|
605
|
+
lexer: Java Server Page
|
606
|
+
search_term: jsp
|
607
|
+
aliases:
|
608
|
+
- jsp
|
609
|
+
primary_extension: .jsp
|
610
|
+
|
611
|
+
JavaScript:
|
612
|
+
type: programming
|
613
|
+
ace_mode: javascript
|
614
|
+
color: "#f15501"
|
615
|
+
aliases:
|
616
|
+
- js
|
617
|
+
- node
|
618
|
+
primary_extension: .js
|
619
|
+
extensions:
|
620
|
+
- ._js
|
621
|
+
- .bones
|
622
|
+
- .jake
|
623
|
+
- .jsfl
|
624
|
+
- .jsm
|
625
|
+
- .jss
|
626
|
+
- .jsx
|
627
|
+
- .pac
|
628
|
+
- .sjs
|
629
|
+
- .ssjs
|
630
|
+
filenames:
|
631
|
+
- Jakefile
|
632
|
+
|
633
|
+
Julia:
|
634
|
+
type: programming
|
635
|
+
primary_extension: .jl
|
636
|
+
|
637
|
+
Kotlin:
|
638
|
+
type: programming
|
639
|
+
primary_extension: .kt
|
640
|
+
extensions:
|
641
|
+
- .ktm
|
642
|
+
- .kts
|
643
|
+
|
644
|
+
LLVM:
|
645
|
+
primary_extension: .ll
|
646
|
+
|
647
|
+
Lasso:
|
648
|
+
type: programming
|
649
|
+
lexer: Lasso
|
650
|
+
ace_mode: lasso
|
651
|
+
color: "#2584c3"
|
652
|
+
primary_extension: .lasso
|
653
|
+
|
654
|
+
Less:
|
655
|
+
type: markup
|
656
|
+
group: CSS
|
657
|
+
lexer: CSS
|
658
|
+
ace_mode: less
|
659
|
+
primary_extension: .less
|
660
|
+
|
661
|
+
LilyPond:
|
662
|
+
lexer: Text only
|
663
|
+
primary_extension: .ly
|
664
|
+
extensions:
|
665
|
+
- .ily
|
666
|
+
|
667
|
+
Literate Haskell:
|
668
|
+
type: programming
|
669
|
+
group: Haskell
|
670
|
+
search_term: lhs
|
671
|
+
aliases:
|
672
|
+
- lhs
|
673
|
+
primary_extension: .lhs
|
674
|
+
|
675
|
+
LiveScript:
|
676
|
+
type: programming
|
677
|
+
ace_mode: ls
|
678
|
+
color: "#499886"
|
679
|
+
aliases:
|
680
|
+
- ls
|
681
|
+
primary_extension: .ls
|
682
|
+
extensions:
|
683
|
+
- ._ls
|
684
|
+
filenames:
|
685
|
+
- Slakefile
|
686
|
+
|
687
|
+
Logtalk:
|
688
|
+
type: programming
|
689
|
+
primary_extension: .lgt
|
690
|
+
|
691
|
+
Lua:
|
692
|
+
type: programming
|
693
|
+
ace_mode: lua
|
694
|
+
color: "#fa1fa1"
|
695
|
+
primary_extension: .lua
|
696
|
+
extensions:
|
697
|
+
- .nse
|
698
|
+
|
699
|
+
Makefile:
|
700
|
+
aliases:
|
701
|
+
- make
|
702
|
+
extensions:
|
703
|
+
- .mak
|
704
|
+
- .mk
|
705
|
+
primary_extension: .mak
|
706
|
+
filenames:
|
707
|
+
- makefile
|
708
|
+
- Makefile
|
709
|
+
- GNUmakefile
|
710
|
+
|
711
|
+
Mako:
|
712
|
+
primary_extension: .mako
|
713
|
+
extensions:
|
714
|
+
- .mao
|
715
|
+
|
716
|
+
Markdown:
|
717
|
+
type: markup
|
718
|
+
lexer: Text only
|
719
|
+
ace_mode: markdown
|
720
|
+
wrap: true
|
721
|
+
primary_extension: .md
|
722
|
+
extensions:
|
723
|
+
- .markdown
|
724
|
+
- .mkd
|
725
|
+
- .mkdown
|
726
|
+
- .ron
|
727
|
+
|
728
|
+
Matlab:
|
729
|
+
type: programming
|
730
|
+
color: "#bb92ac"
|
731
|
+
primary_extension: .matlab
|
732
|
+
|
733
|
+
Max:
|
734
|
+
type: programming
|
735
|
+
color: "#ce279c"
|
736
|
+
lexer: Text only
|
737
|
+
aliases:
|
738
|
+
- max/msp
|
739
|
+
- maxmsp
|
740
|
+
search_term: max/msp
|
741
|
+
primary_extension: .mxt
|
742
|
+
extensions:
|
743
|
+
- .maxhelp
|
744
|
+
- .maxpat
|
745
|
+
|
746
|
+
MiniD: # Legacy
|
747
|
+
searchable: false
|
748
|
+
primary_extension: .minid # Dummy extension
|
749
|
+
|
750
|
+
Mirah:
|
751
|
+
type: programming
|
752
|
+
lexer: Ruby
|
753
|
+
search_term: ruby
|
754
|
+
color: "#c7a938"
|
755
|
+
primary_extension: .druby
|
756
|
+
extensions:
|
757
|
+
- .duby
|
758
|
+
- .mir
|
759
|
+
- .mirah
|
760
|
+
|
761
|
+
Moocode:
|
762
|
+
lexer: MOOCode
|
763
|
+
primary_extension: .moo
|
764
|
+
|
765
|
+
MoonScript:
|
766
|
+
type: programming
|
767
|
+
primary_extension: .moon
|
768
|
+
|
769
|
+
Myghty:
|
770
|
+
primary_extension: .myt
|
771
|
+
|
772
|
+
Nemerle:
|
773
|
+
type: programming
|
774
|
+
color: "#0d3c6e"
|
775
|
+
primary_extension: .n
|
776
|
+
|
777
|
+
Nginx:
|
778
|
+
type: markup
|
779
|
+
lexer: Nginx configuration file
|
780
|
+
primary_extension: .nginxconf
|
781
|
+
|
782
|
+
Nimrod:
|
783
|
+
type: programming
|
784
|
+
color: "#37775b"
|
785
|
+
primary_extension: .nim
|
786
|
+
extensions:
|
787
|
+
- .nimrod
|
788
|
+
|
789
|
+
Nu:
|
790
|
+
type: programming
|
791
|
+
lexer: Scheme
|
792
|
+
color: "#c9df40"
|
793
|
+
aliases:
|
794
|
+
- nush
|
795
|
+
primary_extension: .nu
|
796
|
+
filenames:
|
797
|
+
- Nukefile
|
798
|
+
|
799
|
+
NumPy:
|
800
|
+
group: Python
|
801
|
+
primary_extension: .numpy
|
802
|
+
extensions:
|
803
|
+
- .numpyw
|
804
|
+
- .numsc
|
805
|
+
|
806
|
+
OCaml:
|
807
|
+
type: programming
|
808
|
+
ace_mode: ocaml
|
809
|
+
color: "#3be133"
|
810
|
+
primary_extension: .ml
|
811
|
+
extensions:
|
812
|
+
- .mli
|
813
|
+
- .mll
|
814
|
+
- .mly
|
815
|
+
|
816
|
+
ObjDump:
|
817
|
+
type: data
|
818
|
+
lexer: objdump
|
819
|
+
primary_extension: .objdump
|
820
|
+
|
821
|
+
Objective-C:
|
822
|
+
type: programming
|
823
|
+
color: "#438eff"
|
824
|
+
aliases:
|
825
|
+
- obj-c
|
826
|
+
- objc
|
827
|
+
primary_extension: .m
|
828
|
+
extensions:
|
829
|
+
- .mm
|
830
|
+
|
831
|
+
Objective-J:
|
832
|
+
type: programming
|
833
|
+
color: "#ff0c5a"
|
834
|
+
aliases:
|
835
|
+
- obj-j
|
836
|
+
primary_extension: .j
|
837
|
+
extensions:
|
838
|
+
- .sj
|
839
|
+
|
840
|
+
Omgrofl:
|
841
|
+
type: programming
|
842
|
+
primary_extension: .omgrofl
|
843
|
+
color: "#cabbff"
|
844
|
+
lexer: Text only
|
845
|
+
|
846
|
+
Opa:
|
847
|
+
type: programming
|
848
|
+
primary_extension: .opa
|
849
|
+
|
850
|
+
OpenCL:
|
851
|
+
type: programming
|
852
|
+
group: C
|
853
|
+
lexer: C
|
854
|
+
primary_extension: .cl
|
855
|
+
|
856
|
+
OpenEdge ABL:
|
857
|
+
type: programming
|
858
|
+
aliases:
|
859
|
+
- progress
|
860
|
+
- openedge
|
861
|
+
- abl
|
862
|
+
primary_extension: .p
|
863
|
+
|
864
|
+
PHP:
|
865
|
+
type: programming
|
866
|
+
ace_mode: php
|
867
|
+
color: "#6e03c1"
|
868
|
+
primary_extension: .php
|
869
|
+
extensions:
|
870
|
+
- .aw
|
871
|
+
- .ctp
|
872
|
+
- .php3
|
873
|
+
- .php4
|
874
|
+
- .php5
|
875
|
+
- .phpt
|
876
|
+
filenames:
|
877
|
+
- Phakefile
|
878
|
+
|
879
|
+
Parrot:
|
880
|
+
type: programming
|
881
|
+
color: "#f3ca0a"
|
882
|
+
lexer: Text only
|
883
|
+
primary_extension: .parrot # Dummy extension
|
884
|
+
|
885
|
+
Parrot Internal Representation:
|
886
|
+
group: Parrot
|
887
|
+
type: programming
|
888
|
+
lexer: Text only
|
889
|
+
aliases:
|
890
|
+
- pir
|
891
|
+
primary_extension: .pir
|
892
|
+
|
893
|
+
Parrot Assembly:
|
894
|
+
group: Parrot
|
895
|
+
type: programming
|
896
|
+
lexer: Text only
|
897
|
+
aliases:
|
898
|
+
- pasm
|
899
|
+
primary_extension: .pasm
|
900
|
+
|
901
|
+
Perl:
|
902
|
+
type: programming
|
903
|
+
ace_mode: perl
|
904
|
+
color: "#0298c3"
|
905
|
+
primary_extension: .pl
|
906
|
+
extensions:
|
907
|
+
- .PL
|
908
|
+
- .perl
|
909
|
+
- .ph
|
910
|
+
- .plx
|
911
|
+
- .pm6
|
912
|
+
- .pod
|
913
|
+
- .psgi
|
914
|
+
|
915
|
+
PowerShell:
|
916
|
+
type: programming
|
917
|
+
ace_mode: powershell
|
918
|
+
aliases:
|
919
|
+
- posh
|
920
|
+
primary_extension: .ps1
|
921
|
+
|
922
|
+
Prolog:
|
923
|
+
type: programming
|
924
|
+
color: "#74283c"
|
925
|
+
primary_extension: .prolog
|
926
|
+
extensions:
|
927
|
+
- .pro
|
928
|
+
|
929
|
+
Puppet:
|
930
|
+
type: programming
|
931
|
+
color: "#cc5555"
|
932
|
+
primary_extension: .pp
|
933
|
+
extensions:
|
934
|
+
- .pp
|
935
|
+
filenames:
|
936
|
+
- Modulefile
|
937
|
+
|
938
|
+
Pure Data:
|
939
|
+
type: programming
|
940
|
+
color: "#91de79"
|
941
|
+
lexer: Text only
|
942
|
+
primary_extension: .pd
|
943
|
+
|
944
|
+
Python:
|
945
|
+
type: programming
|
946
|
+
ace_mode: python
|
947
|
+
color: "#3581ba"
|
948
|
+
primary_extension: .py
|
949
|
+
extensions:
|
950
|
+
- .pyw
|
951
|
+
- .wsgi
|
952
|
+
- .xpy
|
953
|
+
filenames:
|
954
|
+
- wscript
|
955
|
+
|
956
|
+
Python traceback:
|
957
|
+
type: data
|
958
|
+
group: Python
|
959
|
+
lexer: Python Traceback
|
960
|
+
searchable: false
|
961
|
+
primary_extension: .pytb
|
962
|
+
|
963
|
+
R:
|
964
|
+
type: programming
|
965
|
+
color: "#198ce7"
|
966
|
+
lexer: S
|
967
|
+
primary_extension: .r
|
968
|
+
|
969
|
+
RHTML:
|
970
|
+
type: markup
|
971
|
+
group: HTML
|
972
|
+
primary_extension: .rhtml
|
973
|
+
|
974
|
+
Racket:
|
975
|
+
type: programming
|
976
|
+
lexer: Racket
|
977
|
+
color: "#ae17ff"
|
978
|
+
primary_extension: .rkt
|
979
|
+
extensions:
|
980
|
+
- .rktd
|
981
|
+
- .rktl
|
982
|
+
|
983
|
+
Raw token data:
|
984
|
+
search_term: raw
|
985
|
+
aliases:
|
986
|
+
- raw
|
987
|
+
primary_extension: .raw
|
988
|
+
|
989
|
+
Rebol:
|
990
|
+
type: programming
|
991
|
+
lexer: REBOL
|
992
|
+
color: "#358a5b"
|
993
|
+
primary_extension: .rebol
|
994
|
+
extensions:
|
995
|
+
- .r2
|
996
|
+
- .r3
|
997
|
+
|
998
|
+
Redcode:
|
999
|
+
primary_extension: .cw
|
1000
|
+
|
1001
|
+
Ruby:
|
1002
|
+
type: programming
|
1003
|
+
ace_mode: ruby
|
1004
|
+
color: "#701516"
|
1005
|
+
aliases:
|
1006
|
+
- jruby
|
1007
|
+
- macruby
|
1008
|
+
- rake
|
1009
|
+
- rb
|
1010
|
+
- rbx
|
1011
|
+
primary_extension: .rb
|
1012
|
+
extensions:
|
1013
|
+
- .builder
|
1014
|
+
- .gemspec
|
1015
|
+
- .god
|
1016
|
+
- .irbrc
|
1017
|
+
- .podspec
|
1018
|
+
- .rbuild
|
1019
|
+
- .rbw
|
1020
|
+
- .rbx
|
1021
|
+
- .ru
|
1022
|
+
- .thor
|
1023
|
+
- .watchr
|
1024
|
+
filenames:
|
1025
|
+
- Gemfile
|
1026
|
+
- Guardfile
|
1027
|
+
- Podfile
|
1028
|
+
- Thorfile
|
1029
|
+
- Vagrantfile
|
1030
|
+
|
1031
|
+
Rust:
|
1032
|
+
type: programming
|
1033
|
+
color: "#dea584"
|
1034
|
+
lexer: Text only
|
1035
|
+
primary_extension: .rs
|
1036
|
+
|
1037
|
+
SCSS:
|
1038
|
+
type: markup
|
1039
|
+
group: CSS
|
1040
|
+
ace_mode: scss
|
1041
|
+
primary_extension: .scss
|
1042
|
+
|
1043
|
+
SQL:
|
1044
|
+
type: data
|
1045
|
+
ace_mode: sql
|
1046
|
+
searchable: false
|
1047
|
+
primary_extension: .sql
|
1048
|
+
|
1049
|
+
Sage:
|
1050
|
+
type: programming
|
1051
|
+
lexer: Python
|
1052
|
+
group: Python
|
1053
|
+
primary_extension: .sage
|
1054
|
+
|
1055
|
+
Sass:
|
1056
|
+
type: markup
|
1057
|
+
group: CSS
|
1058
|
+
primary_extension: .sass
|
1059
|
+
|
1060
|
+
Scala:
|
1061
|
+
type: programming
|
1062
|
+
ace_mode: scala
|
1063
|
+
color: "#7dd3b0"
|
1064
|
+
primary_extension: .scala
|
1065
|
+
|
1066
|
+
Scheme:
|
1067
|
+
type: programming
|
1068
|
+
color: "#1e4aec"
|
1069
|
+
primary_extension: .scm
|
1070
|
+
extensions:
|
1071
|
+
- .sls
|
1072
|
+
- .ss
|
1073
|
+
|
1074
|
+
Scilab:
|
1075
|
+
type: programming
|
1076
|
+
primary_extension: .sci
|
1077
|
+
|
1078
|
+
Self:
|
1079
|
+
type: programming
|
1080
|
+
color: "#0579aa"
|
1081
|
+
lexer: Text only
|
1082
|
+
primary_extension: .self
|
1083
|
+
|
1084
|
+
Shell:
|
1085
|
+
type: programming
|
1086
|
+
lexer: Bash
|
1087
|
+
search_term: bash
|
1088
|
+
color: "#5861ce"
|
1089
|
+
aliases:
|
1090
|
+
- sh
|
1091
|
+
- bash
|
1092
|
+
- zsh
|
1093
|
+
primary_extension: .sh
|
1094
|
+
extensions:
|
1095
|
+
- .tmux
|
1096
|
+
|
1097
|
+
Smalltalk:
|
1098
|
+
type: programming
|
1099
|
+
color: "#596706"
|
1100
|
+
primary_extension: .st
|
1101
|
+
|
1102
|
+
Smarty:
|
1103
|
+
primary_extension: .tpl
|
1104
|
+
|
1105
|
+
Standard ML:
|
1106
|
+
type: programming
|
1107
|
+
color: "#dc566d"
|
1108
|
+
aliases:
|
1109
|
+
- sml
|
1110
|
+
primary_extension: .sml
|
1111
|
+
|
1112
|
+
SuperCollider:
|
1113
|
+
type: programming
|
1114
|
+
color: "#46390b"
|
1115
|
+
lexer: Text only
|
1116
|
+
primary_extension: .sc
|
1117
|
+
|
1118
|
+
Tcl:
|
1119
|
+
type: programming
|
1120
|
+
color: "#e4cc98"
|
1121
|
+
primary_extension: .tcl
|
1122
|
+
|
1123
|
+
Tcsh:
|
1124
|
+
type: programming
|
1125
|
+
group: Shell
|
1126
|
+
primary_extension: .tcsh
|
1127
|
+
extensions:
|
1128
|
+
- .csh
|
1129
|
+
|
1130
|
+
TeX:
|
1131
|
+
type: markup
|
1132
|
+
ace_mode: latex
|
1133
|
+
aliases:
|
1134
|
+
- latex
|
1135
|
+
primary_extension: .tex
|
1136
|
+
extensions:
|
1137
|
+
- .aux
|
1138
|
+
- .dtx
|
1139
|
+
- .ins
|
1140
|
+
- .ltx
|
1141
|
+
- .sty
|
1142
|
+
- .toc
|
1143
|
+
|
1144
|
+
Tea:
|
1145
|
+
type: markup
|
1146
|
+
primary_extension: .tea
|
1147
|
+
|
1148
|
+
Textile:
|
1149
|
+
type: markup
|
1150
|
+
lexer: Text only
|
1151
|
+
ace_mode: textile
|
1152
|
+
wrap: true
|
1153
|
+
primary_extension: .textile
|
1154
|
+
|
1155
|
+
Turing:
|
1156
|
+
type: programming
|
1157
|
+
color: "#45f715"
|
1158
|
+
lexer: Text only
|
1159
|
+
primary_extension: .t
|
1160
|
+
extensions:
|
1161
|
+
- .tu
|
1162
|
+
|
1163
|
+
Twig:
|
1164
|
+
type: markup
|
1165
|
+
group: PHP
|
1166
|
+
lexer: HTML+Django/Jinja
|
1167
|
+
primary_extension: .twig
|
1168
|
+
|
1169
|
+
VHDL:
|
1170
|
+
type: programming
|
1171
|
+
lexer: vhdl
|
1172
|
+
color: "#543978"
|
1173
|
+
primary_extension: .vhdl
|
1174
|
+
|
1175
|
+
Vala:
|
1176
|
+
type: programming
|
1177
|
+
color: "#ee7d06"
|
1178
|
+
primary_extension: .vala
|
1179
|
+
extensions:
|
1180
|
+
- .vapi
|
1181
|
+
|
1182
|
+
Verilog:
|
1183
|
+
type: programming
|
1184
|
+
lexer: verilog
|
1185
|
+
color: "#848bf3"
|
1186
|
+
primary_extension: .v
|
1187
|
+
extensions:
|
1188
|
+
- .sv
|
1189
|
+
- .svh
|
1190
|
+
- .vh
|
1191
|
+
|
1192
|
+
VimL:
|
1193
|
+
type: programming
|
1194
|
+
color: "#199c4b"
|
1195
|
+
search_term: vim
|
1196
|
+
aliases:
|
1197
|
+
- vim
|
1198
|
+
primary_extension: .vim
|
1199
|
+
filenames:
|
1200
|
+
- vimrc
|
1201
|
+
- gvimrc
|
1202
|
+
|
1203
|
+
Visual Basic:
|
1204
|
+
type: programming
|
1205
|
+
lexer: VB.net
|
1206
|
+
color: "#945db7"
|
1207
|
+
primary_extension: .vb
|
1208
|
+
extensions:
|
1209
|
+
- .bas
|
1210
|
+
- .frx
|
1211
|
+
- .vba
|
1212
|
+
- .vbs
|
1213
|
+
|
1214
|
+
XML:
|
1215
|
+
type: markup
|
1216
|
+
ace_mode: xml
|
1217
|
+
aliases:
|
1218
|
+
- rss
|
1219
|
+
- xsd
|
1220
|
+
- xsl
|
1221
|
+
- wsdl
|
1222
|
+
primary_extension: .xml
|
1223
|
+
extensions:
|
1224
|
+
- .ccxml
|
1225
|
+
- .dita
|
1226
|
+
- .ditamap
|
1227
|
+
- .ditaval
|
1228
|
+
- .glade
|
1229
|
+
- .grxml
|
1230
|
+
- .kml
|
1231
|
+
- .mxml
|
1232
|
+
- .plist
|
1233
|
+
- .rdf
|
1234
|
+
- .rss
|
1235
|
+
- .scxml
|
1236
|
+
- .svg
|
1237
|
+
- .vxml
|
1238
|
+
- .wsdl
|
1239
|
+
- .wxi
|
1240
|
+
- .wxl
|
1241
|
+
- .wxs
|
1242
|
+
- .xaml
|
1243
|
+
- .xlf
|
1244
|
+
- .xliff
|
1245
|
+
- .xsd
|
1246
|
+
- .xsl
|
1247
|
+
- .xul
|
1248
|
+
filenames:
|
1249
|
+
- .classpath
|
1250
|
+
- .project
|
1251
|
+
|
1252
|
+
XQuery:
|
1253
|
+
type: programming
|
1254
|
+
color: "#2700e2"
|
1255
|
+
primary_extension: .xquery
|
1256
|
+
extensions:
|
1257
|
+
- .xq
|
1258
|
+
- .xqy
|
1259
|
+
|
1260
|
+
XS:
|
1261
|
+
lexer: C
|
1262
|
+
primary_extension: .xs
|
1263
|
+
|
1264
|
+
XSLT:
|
1265
|
+
type: markup
|
1266
|
+
group: XML
|
1267
|
+
primary_extension: .xslt
|
1268
|
+
|
1269
|
+
YAML:
|
1270
|
+
type: markup
|
1271
|
+
aliases:
|
1272
|
+
- yml
|
1273
|
+
primary_extension: .yml
|
1274
|
+
extensions:
|
1275
|
+
- .yaml
|
1276
|
+
|
1277
|
+
eC:
|
1278
|
+
type: programming
|
1279
|
+
search_term: ec
|
1280
|
+
primary_extension: .ec
|
1281
|
+
extensions:
|
1282
|
+
- .eh
|
1283
|
+
|
1284
|
+
mupad:
|
1285
|
+
lexer: MuPAD
|
1286
|
+
primary_extension: .mu
|
1287
|
+
|
1288
|
+
ooc:
|
1289
|
+
type: programming
|
1290
|
+
lexer: Ooc
|
1291
|
+
color: "#b0b77e"
|
1292
|
+
primary_extension: .ooc
|
1293
|
+
|
1294
|
+
reStructuredText:
|
1295
|
+
type: markup
|
1296
|
+
wrap: true
|
1297
|
+
search_term: rst
|
1298
|
+
aliases:
|
1299
|
+
- rst
|
1300
|
+
primary_extension: .rst
|
1301
|
+
extensions:
|
1302
|
+
- .rest
|