github-linguist 4.8.0 → 4.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/grammars/source.assembly.json +121 -0
- data/grammars/source.gdscript.json +102 -7
- data/grammars/source.papyrus.skyrim.json +1328 -0
- data/grammars/source.pawn.json +736 -0
- data/grammars/source.perl6fe.json +1 -1
- data/grammars/source.puppet.json +47 -101
- data/grammars/source.renpy.json +2 -2
- data/grammars/source.shell.json +2 -1
- data/grammars/source.terra.json +146 -0
- data/grammars/source.toml.json +24 -1
- data/grammars/source.yaml.json +1 -0
- data/grammars/text.html.vue.json +0 -1
- data/lib/linguist/blob.rb +1 -1
- data/lib/linguist/heuristics.rb +1 -1
- data/lib/linguist/languages.json +1 -1
- data/lib/linguist/languages.yml +35 -12
- data/lib/linguist/lazy_blob.rb +1 -0
- data/lib/linguist/repository.rb +3 -0
- data/lib/linguist/samples.json +634 -157
- data/lib/linguist/shebang.rb +2 -2
- data/lib/linguist/version.rb +1 -1
- metadata +11 -19
- data/grammars/source.asm.x86.json +0 -182
- data/grammars/source.autoit.3.json +0 -132
- data/grammars/source.clips.json +0 -80
- data/grammars/source.compiled-papyrus.json +0 -11
- data/grammars/source.idris.json +0 -537
- data/grammars/source.inno.json +0 -69
- data/grammars/source.nix.json +0 -1200
- data/grammars/source.papyrus-assembly.json +0 -266
- data/grammars/source.papyrus.json +0 -231
- data/grammars/source.plsql.oracle.json +0 -642
- data/grammars/source.scad.json +0 -152
- data/grammars/text.html.creole.json +0 -329
data/grammars/source.toml.json
CHANGED
@@ -145,6 +145,29 @@
|
|
145
145
|
"include": "#primatives"
|
146
146
|
}
|
147
147
|
]
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"begin": "((')([^']*)('))\\s*(=)\\s*",
|
151
|
+
"captures": {
|
152
|
+
"1": {
|
153
|
+
"name": "variable.other.key.toml"
|
154
|
+
},
|
155
|
+
"2": {
|
156
|
+
"name": "punctuation.definition.variable.begin.toml"
|
157
|
+
},
|
158
|
+
"4": {
|
159
|
+
"name": "punctuation.definition.variable.end.toml"
|
160
|
+
},
|
161
|
+
"5": {
|
162
|
+
"name": "punctuation.separator.key-value.toml"
|
163
|
+
}
|
164
|
+
},
|
165
|
+
"end": "(?<=\\S)(?<!=)|$",
|
166
|
+
"patterns": [
|
167
|
+
{
|
168
|
+
"include": "#primatives"
|
169
|
+
}
|
170
|
+
]
|
148
171
|
}
|
149
172
|
]
|
150
173
|
},
|
@@ -231,7 +254,7 @@
|
|
231
254
|
"name": "string.quoted.single.toml"
|
232
255
|
},
|
233
256
|
{
|
234
|
-
"match": "\\G(?x)\n\t\t\t\t\t\t[0-9]{4}\n\t\t\t\t\t\t-\n\t\t\t\t\t\t(0[1-9]|1[012])\n\t\t\t\t\t\t-\n\t\t\t\t\t\t(?!00|3[2-9])[0-3][0-9]\n\t\t\t\t\t\t[Tt]\n\t\t\t\t\t\t(?!2[5-9])[0-2][0-9]\n\t\t\t\t\t\t:\n\t\t\t\t\t\t[0-5][0-9]\n\t\t\t\t\t\t:\n\t\t\t\t\t\t(?!6[1-9])[0-6][0-9]\n\t\t\t\t\t\t(\\.[0-9]+)?\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\tZ\n\t\t\t\t\t\t | [+-](?!2[5-9])[0-2][0-9]:[0-5][0-9]\n\t\t\t\t\t\t)\n\t\t\t\t\t",
|
257
|
+
"match": "\\G(?x)\n\t\t\t\t\t\t[0-9]{4}\n\t\t\t\t\t\t-\n\t\t\t\t\t\t(0[1-9]|1[012])\n\t\t\t\t\t\t-\n\t\t\t\t\t\t(?!00|3[2-9])[0-3][0-9]\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\t[Tt]\n\t\t\t\t\t\t\t(?!2[5-9])[0-2][0-9]\n\t\t\t\t\t\t\t:\n\t\t\t\t\t\t\t[0-5][0-9]\n\t\t\t\t\t\t\t:\n\t\t\t\t\t\t\t(?!6[1-9])[0-6][0-9]\n\t\t\t\t\t\t\t(\\.[0-9]+)?\n\t\t\t\t\t\t\t(\n\t\t\t\t\t\t\t\tZ\n\t\t\t\t\t\t\t | [+-](?!2[5-9])[0-2][0-9]:[0-5][0-9]\n\t\t\t\t\t\t\t)?\n\t\t\t\t\t\t)?\n\t\t\t\t\t",
|
235
258
|
"name": "constant.other.date.toml"
|
236
259
|
},
|
237
260
|
{
|
data/grammars/source.yaml.json
CHANGED
data/grammars/text.html.vue.json
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
"fileTypes": [
|
3
3
|
"vue"
|
4
4
|
],
|
5
|
-
"firstLineMatch": "<!(?i:DOCTYPE)|<(?i:html)|<\\?(?i:php)",
|
6
5
|
"foldingStartMarker": "(?x)\n(<(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|li|form|dl)\\b.*?>\n|<!--(?!.*--\\s*>)\n|^<!--\\ \\#tminclude\\ (?>.*?-->)$\n|<\\?(?:php)?.*\\b(if|for(each)?|while)\\b.+:\n|\\{\\{?(if|foreach|capture|literal|foreach|php|section|strip)\n|\\{\\s*($|\\?>\\s*$|//|/\\*(.*\\*/\\s*$|(?!.*?\\*/)))\n)",
|
7
6
|
"foldingStopMarker": "(?x)\n(</(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|li|form|dl)>\n|^(?!.*?<!--).*?--\\s*>\n|^<!--\\ end\\ tminclude\\ -->$\n|<\\?(?:php)?.*\\bend(if|for(each)?|while)\\b\n|\\{\\{?/(if|foreach|capture|literal|foreach|php|section|strip)\n|^[^{]*\\}\n)",
|
8
7
|
"keyEquivalent": "^~H",
|
data/lib/linguist/blob.rb
CHANGED
data/lib/linguist/heuristics.rb
CHANGED
data/lib/linguist/languages.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"ABAP":{"type":"programming","color":"#E8274B","extensions":[".abap"],"ace_mode":"abap"},"AGS Script":{"type":"programming","color":"#B9D9FF","aliases":["ags"],"extensions":[".asc",".ash"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"AMPL":{"type":"programming","color":"#E6EFBB","extensions":[".ampl",".mod"],"tm_scope":"source.ampl","ace_mode":"text"},"ANTLR":{"type":"programming","color":"#9DC3FF","extensions":[".g4"],"ace_mode":"text"},"API Blueprint":{"type":"markup","color":"#2ACCA8","ace_mode":"markdown","extensions":[".apib"],"tm_scope":"text.html.markdown.source.gfm.apib"},"APL":{"type":"programming","color":"#5A8164","extensions":[".apl",".dyalog"],"tm_scope":"source.apl","ace_mode":"text"},"ASP":{"type":"programming","color":"#6a40fd","search_term":"aspx-vb","tm_scope":"text.html.asp","aliases":["aspx","aspx-vb"],"extensions":[".asp",".asax",".ascx",".ashx",".asmx",".aspx",".axd"],"ace_mode":"text"},"ATS":{"type":"programming","color":"#1ac620","aliases":["ats2"],"extensions":[".dats",".hats",".sats"],"tm_scope":"source.ats","ace_mode":"ocaml"},"ActionScript":{"type":"programming","tm_scope":"source.actionscript.3","color":"#882B0F","search_term":"as3","aliases":["actionscript 3","actionscript3","as3"],"extensions":[".as"],"ace_mode":"actionscript"},"Ada":{"type":"programming","color":"#02f88c","extensions":[".adb",".ada",".ads"],"aliases":["ada95","ada2005"],"ace_mode":"ada"},"Agda":{"type":"programming","color":"#315665","extensions":[".agda"],"ace_mode":"text"},"Alloy":{"type":"programming","color":"#64C800","extensions":[".als"],"ace_mode":"text"},"Ant Build System":{"type":"data","tm_scope":"text.xml.ant","filenames":["ant.xml","build.xml"],"ace_mode":"xml"},"ApacheConf":{"type":"markup","aliases":["aconf","apache"],"extensions":[".apacheconf",".vhost"],"tm_scope":"source.apache-config","ace_mode":"apache_conf"},"Apex":{"type":"programming","extensions":[".cls"],"tm_scope":"source.java","ace_mode":"java"},"AppleScript":{"type":"programming","aliases":["osascript"],"extensions":[".applescript",".scpt"],"interpreters":["osascript"],"ace_mode":"applescript","color":"#101F1F"},"Arc":{"type":"programming","color":"#aa2afe","extensions":[".arc"],"tm_scope":"none","ace_mode":"text"},"Arduino":{"type":"programming","color":"#bd79d1","extensions":[".ino"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"AsciiDoc":{"type":"prose","ace_mode":"asciidoc","wrap":true,"extensions":[".asciidoc",".adoc",".asc"],"tm_scope":"text.html.asciidoc"},"AspectJ":{"type":"programming","color":"#a957b0","extensions":[".aj"],"tm_scope":"source.aspectj","ace_mode":"text"},"Assembly":{"type":"programming","color":"#6E4C13","search_term":"nasm","aliases":["nasm"],"extensions":[".asm",".a51",".inc",".nasm"],"tm_scope":"source.asm.x86","ace_mode":"assembly_x86"},"Augeas":{"type":"programming","extensions":[".aug"],"tm_scope":"none","ace_mode":"text"},"AutoHotkey":{"type":"programming","color":"#6594b9","aliases":["ahk"],"extensions":[".ahk",".ahkl"],"tm_scope":"source.ahk","ace_mode":"autohotkey"},"AutoIt":{"type":"programming","color":"#1C3552","aliases":["au3","AutoIt3","AutoItScript"],"extensions":[".au3"],"tm_scope":"source.autoit.3","ace_mode":"autohotkey"},"Awk":{"type":"programming","extensions":[".awk",".auk",".gawk",".mawk",".nawk"],"interpreters":["awk","gawk","mawk","nawk"],"ace_mode":"text"},"Batchfile":{"type":"programming","search_term":"bat","aliases":["bat","batch","dosbatch","winbatch"],"extensions":[".bat",".cmd"],"tm_scope":"source.dosbatch","ace_mode":"batchfile","color":"#C1F12E"},"Befunge":{"type":"programming","extensions":[".befunge"],"ace_mode":"text"},"Bison":{"type":"programming","group":"Yacc","tm_scope":"source.bison","extensions":[".bison"],"ace_mode":"text","color":"#6A463F"},"BitBake":{"type":"programming","tm_scope":"none","extensions":[".bb"],"ace_mode":"text"},"BlitzBasic":{"type":"programming","aliases":["b3d","blitz3d","blitzplus","bplus"],"extensions":[".bb",".decls"],"tm_scope":"source.blitzmax","ace_mode":"text"},"BlitzMax":{"type":"programming","color":"#cd6400","extensions":[".bmx"],"aliases":["bmax"],"ace_mode":"text"},"Bluespec":{"type":"programming","extensions":[".bsv"],"tm_scope":"source.bsv","ace_mode":"verilog"},"Boo":{"type":"programming","color":"#d4bec1","extensions":[".boo"],"ace_mode":"text"},"Brainfuck":{"type":"programming","color":"#2F2530","extensions":[".b",".bf"],"tm_scope":"source.bf","ace_mode":"text"},"Brightscript":{"type":"programming","extensions":[".brs"],"tm_scope":"source.brightscript","ace_mode":"text"},"Bro":{"type":"programming","extensions":[".bro"],"ace_mode":"text"},"C":{"type":"programming","color":"#555555","extensions":[".c",".cats",".h",".idc",".w"],"interpreters":["tcc"],"ace_mode":"c_cpp"},"C#":{"type":"programming","ace_mode":"csharp","tm_scope":"source.cs","search_term":"csharp","color":"#178600","aliases":["csharp"],"extensions":[".cs",".cake",".cshtml",".csx"]},"C++":{"type":"programming","ace_mode":"c_cpp","search_term":"cpp","color":"#f34b7d","aliases":["cpp"],"extensions":[".cpp",".c++",".cc",".cp",".cxx",".h",".h++",".hh",".hpp",".hxx",".inc",".inl",".ipp",".tcc",".tpp"]},"C-ObjDump":{"type":"data","extensions":[".c-objdump"],"tm_scope":"objdump.x86asm","ace_mode":"assembly_x86"},"C2hs Haskell":{"type":"programming","group":"Haskell","aliases":["c2hs"],"extensions":[".chs"],"tm_scope":"source.haskell","ace_mode":"haskell"},"CLIPS":{"type":"programming","extensions":[".clp"],"tm_scope":"source.clips","ace_mode":"text"},"CMake":{"type":"programming","extensions":[".cmake",".cmake.in"],"filenames":["CMakeLists.txt"],"ace_mode":"text"},"COBOL":{"type":"programming","extensions":[".cob",".cbl",".ccp",".cobol",".cpy"],"ace_mode":"cobol"},"CSS":{"type":"markup","tm_scope":"source.css","ace_mode":"css","color":"#563d7c","extensions":[".css"]},"CSV":{"type":"data","ace_mode":"text","tm_scope":"none","extensions":[".csv"]},"Cap'n Proto":{"type":"programming","tm_scope":"source.capnp","extensions":[".capnp"],"ace_mode":"text"},"CartoCSS":{"type":"programming","aliases":["Carto"],"extensions":[".mss"],"ace_mode":"text","tm_scope":"source.css.mss"},"Ceylon":{"type":"programming","extensions":[".ceylon"],"ace_mode":"text"},"Chapel":{"type":"programming","color":"#8dc63f","aliases":["chpl"],"extensions":[".chpl"],"ace_mode":"text"},"Charity":{"type":"programming","extensions":[".ch"],"tm_scope":"none","ace_mode":"text"},"ChucK":{"type":"programming","extensions":[".ck"],"tm_scope":"source.java","ace_mode":"java"},"Cirru":{"type":"programming","color":"#ccccff","ace_mode":"cirru","extensions":[".cirru"]},"Clarion":{"type":"programming","color":"#db901e","ace_mode":"text","extensions":[".clw"],"tm_scope":"source.clarion"},"Clean":{"type":"programming","color":"#3F85AF","extensions":[".icl",".dcl"],"tm_scope":"none","ace_mode":"text"},"Click":{"type":"programming","color":"#E4E6F3","extensions":[".click"],"tm_scope":"source.click","ace_mode":"text"},"Clojure":{"type":"programming","ace_mode":"clojure","color":"#db5855","extensions":[".clj",".boot",".cl2",".cljc",".cljs",".cljs.hl",".cljscm",".cljx",".hic"],"filenames":["riemann.config"]},"CoffeeScript":{"type":"programming","tm_scope":"source.coffee","ace_mode":"coffee","color":"#244776","aliases":["coffee","coffee-script"],"extensions":[".coffee","._coffee",".cake",".cjsx",".cson",".iced"],"filenames":["Cakefile"],"interpreters":["coffee"]},"ColdFusion":{"type":"programming","group":"ColdFusion","ace_mode":"coldfusion","color":"#ed2cd6","search_term":"cfm","aliases":["cfm","cfml","coldfusion html"],"extensions":[".cfm",".cfml"],"tm_scope":"text.html.cfm"},"ColdFusion CFC":{"type":"programming","group":"ColdFusion","ace_mode":"coldfusion","color":"#ed2cd6","search_term":"cfc","aliases":["cfc"],"extensions":[".cfc"],"tm_scope":"source.cfscript"},"Common Lisp":{"type":"programming","tm_scope":"source.lisp","color":"#3fb68b","aliases":["lisp"],"extensions":[".lisp",".asd",".cl",".l",".lsp",".ny",".podsl",".sexp"],"interpreters":["lisp","sbcl","ccl","clisp","ecl"],"ace_mode":"lisp"},"Component Pascal":{"type":"programming","color":"#B0CE4E","extensions":[".cp",".cps"],"tm_scope":"source.pascal","aliases":["delphi","objectpascal"],"ace_mode":"pascal"},"Cool":{"type":"programming","extensions":[".cl"],"tm_scope":"source.cool","ace_mode":"text"},"Coq":{"type":"programming","extensions":[".coq",".v"],"ace_mode":"text"},"Cpp-ObjDump":{"type":"data","extensions":[".cppobjdump",".c++-objdump",".c++objdump",".cpp-objdump",".cxx-objdump"],"tm_scope":"objdump.x86asm","aliases":["c++-objdumb"],"ace_mode":"assembly_x86"},"Creole":{"type":"prose","wrap":true,"extensions":[".creole"],"tm_scope":"text.html.creole","ace_mode":"text"},"Crystal":{"type":"programming","color":"#776791","extensions":[".cr"],"ace_mode":"ruby","tm_scope":"source.crystal","interpreters":["crystal"]},"Cucumber":{"type":"programming","extensions":[".feature"],"tm_scope":"text.gherkin.feature","aliases":["gherkin"],"ace_mode":"text","color":"#5B2063"},"Cuda":{"type":"programming","extensions":[".cu",".cuh"],"tm_scope":"source.cuda-c++","ace_mode":"c_cpp","color":"#3A4E3A"},"Cycript":{"type":"programming","extensions":[".cy"],"tm_scope":"source.js","ace_mode":"javascript"},"Cython":{"type":"programming","group":"Python","extensions":[".pyx",".pxd",".pxi"],"aliases":["pyrex"],"ace_mode":"text"},"D":{"type":"programming","color":"#ba595e","extensions":[".d",".di"],"ace_mode":"d"},"D-ObjDump":{"type":"data","extensions":[".d-objdump"],"tm_scope":"objdump.x86asm","ace_mode":"assembly_x86"},"DIGITAL Command Language":{"type":"programming","aliases":["dcl"],"extensions":[".com"],"tm_scope":"none","ace_mode":"text"},"DM":{"type":"programming","color":"#447265","extensions":[".dm"],"aliases":["byond"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"DNS Zone":{"type":"data","extensions":[".zone",".arpa"],"tm_scope":"text.zone_file","ace_mode":"text"},"DTrace":{"type":"programming","aliases":["dtrace-script"],"extensions":[".d"],"interpreters":["dtrace"],"tm_scope":"source.c","ace_mode":"c_cpp"},"Darcs Patch":{"type":"data","search_term":"dpatch","aliases":["dpatch"],"extensions":[".darcspatch",".dpatch"],"tm_scope":"none","ace_mode":"text"},"Dart":{"type":"programming","color":"#00B4AB","extensions":[".dart"],"ace_mode":"dart"},"Diff":{"type":"data","extensions":[".diff",".patch"],"aliases":["udiff"],"tm_scope":"source.diff","ace_mode":"diff"},"Dockerfile":{"type":"data","tm_scope":"source.dockerfile","extensions":[".dockerfile"],"filenames":["Dockerfile"],"ace_mode":"dockerfile"},"Dogescript":{"type":"programming","color":"#cca760","extensions":[".djs"],"tm_scope":"none","ace_mode":"text"},"Dylan":{"type":"programming","color":"#6c616e","extensions":[".dylan",".dyl",".intr",".lid"],"ace_mode":"text"},"E":{"type":"programming","color":"#ccce35","extensions":[".E"],"tm_scope":"none","ace_mode":"text"},"ECL":{"type":"programming","color":"#8a1267","extensions":[".ecl",".eclxml"],"tm_scope":"none","ace_mode":"text"},"ECLiPSe":{"type":"programming","group":"prolog","extensions":[".ecl"],"tm_scope":"source.prolog.eclipse","ace_mode":"prolog"},"Eagle":{"type":"markup","color":"#814C05","extensions":[".sch",".brd"],"tm_scope":"text.xml","ace_mode":"xml"},"Ecere Projects":{"type":"data","group":"JavaScript","extensions":[".epj"],"tm_scope":"source.json","ace_mode":"json"},"Eiffel":{"type":"programming","color":"#946d57","extensions":[".e"],"ace_mode":"eiffel"},"Elixir":{"type":"programming","color":"#6e4a7e","extensions":[".ex",".exs"],"ace_mode":"elixir","filenames":["mix.lock"],"interpreters":["elixir"]},"Elm":{"type":"programming","color":"#60B5CC","extensions":[".elm"],"tm_scope":"source.elm","ace_mode":"elm"},"Emacs Lisp":{"type":"programming","tm_scope":"source.lisp","color":"#c065db","aliases":["elisp","emacs"],"filenames":[".emacs",".emacs.desktop"],"extensions":[".el",".emacs",".emacs.desktop"],"ace_mode":"lisp"},"EmberScript":{"type":"programming","color":"#FFF4F3","extensions":[".em",".emberscript"],"tm_scope":"source.coffee","ace_mode":"coffee"},"Erlang":{"type":"programming","color":"#B83998","extensions":[".erl",".es",".escript",".hrl",".xrl",".yrl"],"filenames":["rebar.config","rebar.config.lock","rebar.lock"],"ace_mode":"erlang","interpreters":["escript"]},"F#":{"type":"programming","color":"#b845fc","search_term":"fsharp","aliases":["fsharp"],"extensions":[".fs",".fsi",".fsx"],"tm_scope":"source.fsharp","ace_mode":"text"},"FLUX":{"type":"programming","color":"#88ccff","extensions":[".fx",".flux"],"tm_scope":"none","ace_mode":"text"},"FORTRAN":{"type":"programming","color":"#4d41b1","extensions":[".f90",".f",".f03",".f08",".f77",".f95",".for",".fpp"],"tm_scope":"source.fortran.modern","ace_mode":"text"},"Factor":{"type":"programming","color":"#636746","extensions":[".factor"],"filenames":[".factor-boot-rc",".factor-rc"],"ace_mode":"text"},"Fancy":{"type":"programming","color":"#7b9db4","extensions":[".fy",".fancypack"],"filenames":["Fakefile"],"ace_mode":"text"},"Fantom":{"type":"programming","color":"#dbded5","extensions":[".fan"],"tm_scope":"source.fan","ace_mode":"text"},"Filterscript":{"type":"programming","group":"RenderScript","extensions":[".fs"],"tm_scope":"none","ace_mode":"text"},"Formatted":{"type":"data","extensions":[".for",".eam.fs"],"tm_scope":"none","ace_mode":"text"},"Forth":{"type":"programming","color":"#341708","extensions":[".fth",".4th",".f",".for",".forth",".fr",".frt",".fs"],"ace_mode":"forth"},"FreeMarker":{"type":"programming","color":"#0050b2","aliases":["ftl"],"extensions":[".ftl"],"tm_scope":"text.html.ftl","ace_mode":"ftl"},"Frege":{"type":"programming","color":"#00cafe","extensions":[".fr"],"tm_scope":"source.haskell","ace_mode":"haskell"},"G-code":{"type":"data","extensions":[".g",".gco",".gcode"],"tm_scope":"source.gcode","ace_mode":"gcode"},"GAMS":{"type":"programming","extensions":[".gms"],"tm_scope":"none","ace_mode":"text"},"GAP":{"type":"programming","extensions":[".g",".gap",".gd",".gi",".tst"],"tm_scope":"source.gap","ace_mode":"text"},"GAS":{"type":"programming","group":"Assembly","extensions":[".s",".ms"],"tm_scope":"source.asm.x86","ace_mode":"assembly_x86"},"GDScript":{"type":"programming","extensions":[".gd"],"tm_scope":"source.gdscript","ace_mode":"text"},"GLSL":{"type":"programming","extensions":[".glsl",".fp",".frag",".frg",".fs",".fshader",".geo",".geom",".glslv",".gshader",".shader",".vert",".vrx",".vshader"],"ace_mode":"glsl"},"Game Maker Language":{"type":"programming","color":"#8fb200","extensions":[".gml"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"Genshi":{"type":"programming","extensions":[".kid"],"tm_scope":"text.xml.genshi","aliases":["xml+genshi","xml+kid"],"ace_mode":"xml"},"Gentoo Ebuild":{"type":"programming","group":"Shell","extensions":[".ebuild"],"tm_scope":"source.shell","ace_mode":"sh"},"Gentoo Eclass":{"type":"programming","group":"Shell","extensions":[".eclass"],"tm_scope":"source.shell","ace_mode":"sh"},"Gettext Catalog":{"type":"prose","search_term":"pot","searchable":false,"aliases":["pot"],"extensions":[".po",".pot"],"tm_scope":"source.po","ace_mode":"text"},"Glyph":{"type":"programming","color":"#e4cc98","extensions":[".glf"],"tm_scope":"source.tcl","ace_mode":"tcl"},"Gnuplot":{"type":"programming","color":"#f0a9f0","extensions":[".gp",".gnu",".gnuplot",".plot",".plt"],"interpreters":["gnuplot"],"ace_mode":"text"},"Go":{"type":"programming","color":"#375eab","extensions":[".go"],"ace_mode":"golang"},"Golo":{"type":"programming","color":"#88562A","extensions":[".golo"],"tm_scope":"source.golo","ace_mode":"text"},"Gosu":{"type":"programming","color":"#82937f","extensions":[".gs",".gst",".gsx",".vark"],"tm_scope":"source.gosu.2","ace_mode":"text"},"Grace":{"type":"programming","extensions":[".grace"],"tm_scope":"source.grace","ace_mode":"text"},"Gradle":{"type":"data","extensions":[".gradle"],"tm_scope":"source.groovy.gradle","ace_mode":"text"},"Grammatical Framework":{"type":"programming","aliases":["gf"],"wrap":false,"extensions":[".gf"],"searchable":true,"color":"#79aa7a","tm_scope":"source.haskell","ace_mode":"haskell"},"Graph Modeling Language":{"type":"data","extensions":[".gml"],"tm_scope":"none","ace_mode":"text"},"Graphviz (DOT)":{"type":"data","tm_scope":"source.dot","extensions":[".dot",".gv"],"ace_mode":"text"},"Groff":{"type":"markup","extensions":[".man",".1",".1in",".1m",".1x",".2",".3",".3in",".3m",".3qt",".3x",".4",".5",".6",".7",".8",".9",".l",".me",".ms",".n",".rno",".roff"],"tm_scope":"text.groff","aliases":["nroff"],"ace_mode":"text"},"Groovy":{"type":"programming","ace_mode":"groovy","color":"#e69f56","extensions":[".groovy",".grt",".gtpl",".gvy"],"interpreters":["groovy"],"filenames":["Jenkinsfile"]},"Groovy Server Pages":{"type":"programming","group":"Groovy","aliases":["gsp","java server page"],"extensions":[".gsp"],"tm_scope":"text.html.jsp","ace_mode":"jsp"},"HCL":{"type":"programming","extensions":[".hcl",".tf"],"ace_mode":"ruby","tm_scope":"source.ruby"},"HLSL":{"type":"programming","extensions":[".hlsl",".fx",".fxh",".hlsli"],"ace_mode":"text","tm_scope":"none"},"HTML":{"type":"markup","tm_scope":"text.html.basic","ace_mode":"html","color":"#e44b23","aliases":["xhtml"],"extensions":[".html",".htm",".html.hl",".inc",".st",".xht",".xhtml"]},"HTML+Django":{"type":"markup","tm_scope":"text.html.django","group":"HTML","extensions":[".mustache",".jinja"],"aliases":["django","html+django/jinja","html+jinja","htmldjango"],"ace_mode":"django"},"HTML+EEX":{"type":"markup","tm_scope":"text.html.elixir","group":"HTML","aliases":["eex"],"extensions":[".eex"],"ace_mode":"text"},"HTML+ERB":{"type":"markup","tm_scope":"text.html.erb","group":"HTML","aliases":["erb"],"extensions":[".erb",".erb.deface"],"ace_mode":"text"},"HTML+PHP":{"type":"markup","tm_scope":"text.html.php","group":"HTML","extensions":[".phtml"],"ace_mode":"php"},"HTTP":{"type":"data","extensions":[".http"],"tm_scope":"source.httpspec","ace_mode":"text"},"Hack":{"type":"programming","ace_mode":"php","extensions":[".hh",".php"],"tm_scope":"text.html.php","color":"#878787"},"Haml":{"group":"HTML","type":"markup","extensions":[".haml",".haml.deface"],"ace_mode":"haml","color":"#ECE2A9"},"Handlebars":{"type":"markup","color":"#01a9d6","group":"HTML","aliases":["hbs","htmlbars"],"extensions":[".handlebars",".hbs"],"tm_scope":"text.html.handlebars","ace_mode":"handlebars"},"Harbour":{"type":"programming","color":"#0e60e3","extensions":[".hb"],"tm_scope":"source.harbour","ace_mode":"text"},"Haskell":{"type":"programming","color":"#29b544","extensions":[".hs",".hsc"],"ace_mode":"haskell"},"Haxe":{"type":"programming","ace_mode":"haxe","color":"#df7900","extensions":[".hx",".hxsl"],"tm_scope":"source.haxe.2"},"Hy":{"type":"programming","ace_mode":"text","color":"#7790B2","extensions":[".hy"],"aliases":["hylang"],"tm_scope":"source.hy"},"HyPhy":{"type":"programming","ace_mode":"text","extensions":[".bf"],"tm_scope":"none"},"IDL":{"type":"programming","color":"#a3522f","extensions":[".pro",".dlm"],"ace_mode":"text"},"IGOR Pro":{"type":"programming","extensions":[".ipf"],"aliases":["igor","igorpro"],"tm_scope":"none","ace_mode":"text"},"INI":{"type":"data","extensions":[".ini",".cfg",".prefs",".pro",".properties"],"tm_scope":"source.ini","aliases":["dosini"],"ace_mode":"ini"},"IRC log":{"type":"data","search_term":"irc","aliases":["irc","irc logs"],"extensions":[".irclog",".weechatlog"],"tm_scope":"none","ace_mode":"text"},"Idris":{"type":"programming","extensions":[".idr",".lidr"],"ace_mode":"text"},"Inform 7":{"type":"programming","wrap":true,"extensions":[".ni",".i7x"],"tm_scope":"source.inform7","aliases":["i7","inform7"],"ace_mode":"text"},"Inno Setup":{"type":"programming","extensions":[".iss"],"tm_scope":"source.inno","ace_mode":"text"},"Io":{"type":"programming","color":"#a9188d","extensions":[".io"],"ace_mode":"io"},"Ioke":{"type":"programming","color":"#078193","extensions":[".ik"],"interpreters":["ioke"],"ace_mode":"text"},"Isabelle":{"type":"programming","color":"#FEFE00","extensions":[".thy"],"tm_scope":"source.isabelle.theory","ace_mode":"text"},"Isabelle ROOT":{"type":"programming","group":"Isabelle","filenames":["ROOT"],"tm_scope":"source.isabelle.root","ace_mode":"text"},"J":{"type":"programming","color":"#9EEDFF","extensions":[".ijs"],"tm_scope":"source.j","ace_mode":"text"},"JFlex":{"type":"programming","color":"#DBCA00","group":"Lex","extensions":[".flex",".jflex"],"tm_scope":"source.jflex","ace_mode":"text"},"JSON":{"type":"data","tm_scope":"source.json","group":"JavaScript","ace_mode":"json","searchable":false,"extensions":[".json",".geojson",".lock",".topojson"],"filenames":[".jshintrc","composer.lock"]},"JSON5":{"type":"data","extensions":[".json5"],"tm_scope":"source.js","ace_mode":"javascript"},"JSONLD":{"type":"data","group":"JavaScript","ace_mode":"javascript","extensions":[".jsonld"],"tm_scope":"source.js"},"JSONiq":{"color":"#40d47e","type":"programming","ace_mode":"jsoniq","extensions":[".jq"],"tm_scope":"source.jq"},"JSX":{"type":"programming","group":"JavaScript","extensions":[".jsx"],"tm_scope":"source.js.jsx","ace_mode":"javascript"},"Jade":{"group":"HTML","type":"markup","extensions":[".jade"],"tm_scope":"text.jade","ace_mode":"jade"},"Jasmin":{"type":"programming","ace_mode":"java","extensions":[".j"],"tm_scope":"source.jasmin"},"Java":{"type":"programming","ace_mode":"java","color":"#b07219","extensions":[".java"]},"Java Server Pages":{"type":"programming","group":"Java","search_term":"jsp","aliases":["jsp"],"extensions":[".jsp"],"tm_scope":"text.html.jsp","ace_mode":"jsp"},"JavaScript":{"type":"programming","tm_scope":"source.js","ace_mode":"javascript","color":"#f1e05a","aliases":["js","node"],"extensions":[".js","._js",".bones",".es6",".frag",".gs",".jake",".jsb",".jscad",".jsfl",".jsm",".jss",".njs",".pac",".sjs",".ssjs",".sublime-build",".sublime-commands",".sublime-completions",".sublime-keymap",".sublime-macro",".sublime-menu",".sublime-mousemap",".sublime-project",".sublime-settings",".sublime-theme",".sublime-workspace",".sublime_metrics",".sublime_session",".xsjs",".xsjslib"],"filenames":["Jakefile"],"interpreters":["node"]},"Julia":{"type":"programming","extensions":[".jl"],"color":"#a270ba","ace_mode":"julia"},"Jupyter Notebook":{"type":"markup","ace_mode":"json","tm_scope":"source.json","color":"#DA5B0B","extensions":[".ipynb"],"filenames":["Notebook"],"aliases":["IPython Notebook"]},"KRL":{"type":"programming","color":"#28431f","extensions":[".krl"],"tm_scope":"none","ace_mode":"text"},"KiCad":{"type":"programming","extensions":[".sch",".brd",".kicad_pcb"],"tm_scope":"none","ace_mode":"text"},"Kit":{"type":"markup","ace_mode":"html","extensions":[".kit"],"tm_scope":"text.html.basic"},"Kotlin":{"type":"programming","color":"#F18E33","extensions":[".kt",".ktm",".kts"],"tm_scope":"source.Kotlin","ace_mode":"text"},"LFE":{"type":"programming","extensions":[".lfe"],"color":"#004200","group":"Erlang","tm_scope":"source.lisp","ace_mode":"lisp"},"LLVM":{"type":"programming","extensions":[".ll"],"ace_mode":"text","color":"#185619"},"LOLCODE":{"type":"programming","extensions":[".lol"],"color":"#cc9900","tm_scope":"none","ace_mode":"text"},"LSL":{"type":"programming","ace_mode":"lsl","extensions":[".lsl",".lslp"],"interpreters":["lsl"],"color":"#3d9970"},"LabVIEW":{"type":"programming","extensions":[".lvproj"],"tm_scope":"text.xml","ace_mode":"xml"},"Lasso":{"type":"programming","color":"#999999","extensions":[".lasso",".las",".lasso8",".lasso9",".ldml"],"tm_scope":"file.lasso","aliases":["lassoscript"],"ace_mode":"text"},"Latte":{"type":"markup","color":"#A8FF97","group":"HTML","extensions":[".latte"],"tm_scope":"text.html.smarty","ace_mode":"smarty"},"Lean":{"type":"programming","extensions":[".lean",".hlean"],"ace_mode":"lean"},"Less":{"type":"markup","group":"CSS","extensions":[".less"],"tm_scope":"source.css.less","ace_mode":"less","color":"#A1D9A1"},"Lex":{"type":"programming","color":"#DBCA00","aliases":["flex"],"extensions":[".l",".lex"],"tm_scope":"none","ace_mode":"text"},"LilyPond":{"type":"programming","extensions":[".ly",".ily"],"ace_mode":"text"},"Limbo":{"type":"programming","extensions":[".b",".m"],"tm_scope":"none","ace_mode":"text"},"Linker Script":{"type":"data","extensions":[".ld",".lds"],"filenames":["ld.script"],"tm_scope":"none","ace_mode":"text"},"Linux Kernel Module":{"type":"data","extensions":[".mod"],"tm_scope":"none","ace_mode":"text"},"Liquid":{"type":"markup","extensions":[".liquid"],"tm_scope":"text.html.liquid","ace_mode":"liquid"},"Literate Agda":{"type":"programming","group":"Agda","extensions":[".lagda"],"tm_scope":"none","ace_mode":"text"},"Literate CoffeeScript":{"type":"programming","tm_scope":"source.litcoffee","group":"CoffeeScript","ace_mode":"text","wrap":true,"search_term":"litcoffee","aliases":["litcoffee"],"extensions":[".litcoffee"]},"Literate Haskell":{"type":"programming","group":"Haskell","search_term":"lhs","aliases":["lhaskell","lhs"],"extensions":[".lhs"],"tm_scope":"text.tex.latex.haskell","ace_mode":"text"},"LiveScript":{"type":"programming","color":"#499886","aliases":["live-script","ls"],"extensions":[".ls","._ls"],"filenames":["Slakefile"],"ace_mode":"livescript"},"Logos":{"type":"programming","extensions":[".xm",".x",".xi"],"ace_mode":"text"},"Logtalk":{"type":"programming","extensions":[".lgt",".logtalk"],"ace_mode":"text"},"LookML":{"type":"programming","ace_mode":"yaml","color":"#652B81","extensions":[".lookml"],"tm_scope":"source.yaml"},"LoomScript":{"type":"programming","extensions":[".ls"],"tm_scope":"source.loomscript","ace_mode":"text"},"Lua":{"type":"programming","ace_mode":"lua","color":"#000080","extensions":[".lua",".fcgi",".nse",".pd_lua",".rbxs",".wlua"],"interpreters":["lua"]},"M":{"type":"programming","aliases":["mumps"],"extensions":[".mumps",".m"],"tm_scope":"source.lisp","ace_mode":"lisp"},"M4":{"type":"programming","extensions":[".m4"],"tm_scope":"none","ace_mode":"text"},"M4Sugar":{"type":"programming","group":"M4","aliases":["autoconf"],"extensions":[".m4"],"filenames":["configure.ac"],"tm_scope":"none","ace_mode":"text"},"MAXScript":{"type":"programming","color":"#00a6a6","extensions":[".ms",".mcr"],"tm_scope":"source.maxscript","ace_mode":"text"},"MTML":{"type":"markup","color":"#b7e1f4","extensions":[".mtml"],"tm_scope":"text.html.basic","ace_mode":"html"},"MUF":{"type":"programming","group":"Forth","extensions":[".muf",".m"],"tm_scope":"none","ace_mode":"forth"},"Makefile":{"type":"programming","color":"#427819","aliases":["bsdmake","make","mf"],"extensions":[".mak",".d",".mk"],"filenames":["GNUmakefile","Kbuild","Makefile","Makefile.am","Makefile.in","Makefile.inc","makefile"],"interpreters":["make"],"ace_mode":"makefile"},"Mako":{"type":"programming","extensions":[".mako",".mao"],"tm_scope":"text.html.mako","ace_mode":"text"},"Markdown":{"type":"prose","ace_mode":"markdown","wrap":true,"extensions":[".md",".markdown",".mkd",".mkdn",".mkdown",".ron"],"tm_scope":"source.gfm","color":"#083FA1"},"Mask":{"type":"markup","color":"#f97732","ace_mode":"mask","extensions":[".mask"],"tm_scope":"source.mask"},"Mathematica":{"type":"programming","extensions":[".mathematica",".cdf",".m",".ma",".mt",".nb",".nbp",".wl",".wlt"],"aliases":["mma"],"ace_mode":"text"},"Matlab":{"type":"programming","color":"#bb92ac","aliases":["octave"],"extensions":[".matlab",".m"],"ace_mode":"matlab"},"Maven POM":{"type":"data","tm_scope":"text.xml.pom","filenames":["pom.xml"],"ace_mode":"xml"},"Max":{"type":"programming","color":"#c4a79c","aliases":["max/msp","maxmsp"],"search_term":"max/msp","extensions":[".maxpat",".maxhelp",".maxproj",".mxt",".pat"],"tm_scope":"source.json","ace_mode":"json"},"MediaWiki":{"type":"prose","wrap":true,"extensions":[".mediawiki",".wiki"],"tm_scope":"text.html.mediawiki","ace_mode":"text"},"Mercury":{"type":"programming","color":"#ff2b2b","ace_mode":"prolog","interpreters":["mmi"],"extensions":[".m",".moo"],"tm_scope":"source.mercury"},"Metal":{"type":"programming","color":"#8f14e9","extensions":[".metal"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"MiniD":{"type":"programming","searchable":false,"extensions":[".minid"],"tm_scope":"none","ace_mode":"text"},"Mirah":{"type":"programming","search_term":"mirah","color":"#c7a938","extensions":[".druby",".duby",".mir",".mirah"],"tm_scope":"source.ruby","ace_mode":"ruby"},"Modelica":{"type":"programming","extensions":[".mo"],"tm_scope":"source.modelica","ace_mode":"text"},"Modula-2":{"type":"programming","extensions":[".mod"],"tm_scope":"source.modula2","ace_mode":"text"},"Module Management System":{"type":"programming","extensions":[".mms",".mmk"],"filenames":["descrip.mmk","descrip.mms"],"tm_scope":"none","ace_mode":"text"},"Monkey":{"type":"programming","extensions":[".monkey"],"ace_mode":"text"},"Moocode":{"type":"programming","extensions":[".moo"],"tm_scope":"none","ace_mode":"text"},"MoonScript":{"type":"programming","extensions":[".moon"],"interpreters":["moon"],"ace_mode":"text"},"Myghty":{"type":"programming","extensions":[".myt"],"tm_scope":"none","ace_mode":"text"},"NCL":{"type":"programming","color":"#28431f","extensions":[".ncl"],"tm_scope":"source.ncl","ace_mode":"text"},"NL":{"type":"data","extensions":[".nl"],"tm_scope":"none","ace_mode":"text"},"NSIS":{"type":"programming","extensions":[".nsi",".nsh"],"ace_mode":"text"},"Nemerle":{"type":"programming","color":"#3d3c6e","extensions":[".n"],"ace_mode":"text"},"NetLinx":{"type":"programming","color":"#0aa0ff","extensions":[".axs",".axi"],"tm_scope":"source.netlinx","ace_mode":"text"},"NetLinx+ERB":{"type":"programming","color":"#747faa","extensions":[".axs.erb",".axi.erb"],"tm_scope":"source.netlinx.erb","ace_mode":"text"},"NetLogo":{"type":"programming","color":"#ff6375","extensions":[".nlogo"],"tm_scope":"source.lisp","ace_mode":"lisp"},"NewLisp":{"type":"programming","lexer":"NewLisp","color":"#87AED7","extensions":[".nl",".lisp",".lsp"],"interpreters":["newlisp"],"tm_scope":"source.lisp","ace_mode":"lisp"},"Nginx":{"type":"markup","extensions":[".nginxconf",".vhost"],"filenames":["nginx.conf"],"tm_scope":"source.nginx","aliases":["nginx configuration file"],"ace_mode":"text","color":"#9469E9"},"Nimrod":{"type":"programming","color":"#37775b","extensions":[".nim",".nimrod"],"ace_mode":"text","tm_scope":"source.nim"},"Ninja":{"type":"data","tm_scope":"source.ninja","extensions":[".ninja"],"ace_mode":"text"},"Nit":{"type":"programming","color":"#009917","extensions":[".nit"],"tm_scope":"source.nit","ace_mode":"text"},"Nix":{"type":"programming","color":"#7e7eff","extensions":[".nix"],"aliases":["nixos"],"tm_scope":"source.nix","ace_mode":"nix"},"Nu":{"type":"programming","color":"#c9df40","aliases":["nush"],"extensions":[".nu"],"filenames":["Nukefile"],"tm_scope":"source.scheme","ace_mode":"scheme","interpreters":["nush"]},"NumPy":{"type":"programming","group":"Python","extensions":[".numpy",".numpyw",".numsc"],"tm_scope":"none","ace_mode":"text","color":"#9C8AF9"},"OCaml":{"type":"programming","ace_mode":"ocaml","color":"#3be133","extensions":[".ml",".eliom",".eliomi",".ml4",".mli",".mll",".mly"],"interpreters":["ocaml","ocamlrun"],"tm_scope":"source.ocaml"},"ObjDump":{"type":"data","extensions":[".objdump"],"tm_scope":"objdump.x86asm","ace_mode":"assembly_x86"},"Objective-C":{"type":"programming","tm_scope":"source.objc","color":"#438eff","aliases":["obj-c","objc","objectivec"],"extensions":[".m",".h"],"ace_mode":"objectivec"},"Objective-C++":{"type":"programming","tm_scope":"source.objc++","color":"#6866fb","aliases":["obj-c++","objc++","objectivec++"],"extensions":[".mm"],"ace_mode":"objectivec"},"Objective-J":{"type":"programming","color":"#ff0c5a","aliases":["obj-j","objectivej","objj"],"extensions":[".j",".sj"],"tm_scope":"source.js.objj","ace_mode":"text"},"Omgrofl":{"type":"programming","extensions":[".omgrofl"],"color":"#cabbff","tm_scope":"none","ace_mode":"text"},"Opa":{"type":"programming","extensions":[".opa"],"ace_mode":"text"},"Opal":{"type":"programming","color":"#f7ede0","extensions":[".opal"],"tm_scope":"source.opal","ace_mode":"text"},"OpenCL":{"type":"programming","group":"C","extensions":[".cl",".opencl"],"tm_scope":"source.c","ace_mode":"c_cpp"},"OpenEdge ABL":{"type":"programming","aliases":["progress","openedge","abl"],"extensions":[".p",".cls"],"tm_scope":"source.abl","ace_mode":"text"},"OpenSCAD":{"type":"programming","extensions":[".scad"],"tm_scope":"source.scad","ace_mode":"scad"},"Org":{"type":"prose","wrap":true,"extensions":[".org"],"tm_scope":"none","ace_mode":"text"},"Ox":{"type":"programming","extensions":[".ox",".oxh",".oxo"],"tm_scope":"source.ox","ace_mode":"text"},"Oxygene":{"type":"programming","color":"#cdd0e3","extensions":[".oxygene"],"tm_scope":"none","ace_mode":"text"},"Oz":{"type":"programming","color":"#fab738","extensions":[".oz"],"tm_scope":"source.oz","ace_mode":"text"},"PAWN":{"type":"programming","color":"#dbb284","extensions":[".pwn"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"PHP":{"type":"programming","tm_scope":"text.html.php","ace_mode":"php","color":"#4F5D95","extensions":[".php",".aw",".ctp",".fcgi",".inc",".php3",".php4",".php5",".phps",".phpt"],"filenames":["Phakefile"],"interpreters":["php"],"aliases":["inc"]},"PLSQL":{"type":"programming","ace_mode":"sql","tm_scope":"source.plsql.oracle","color":"#dad8d8","extensions":[".pls",".pck",".pkb",".pks",".plb",".plsql",".sql"]},"PLpgSQL":{"type":"programming","ace_mode":"pgsql","tm_scope":"source.sql","extensions":[".sql"]},"POV-Ray SDL":{"type":"programming","aliases":["pov-ray","povray"],"extensions":[".pov",".inc"],"ace_mode":"text"},"Pan":{"type":"programming","color":"#cc0000","extensions":[".pan"],"tm_scope":"none","ace_mode":"text"},"Papyrus":{"type":"programming","color":"#6600cc","extensions":[".psc"],"tm_scope":"source.papyrus","ace_mode":"text"},"Parrot":{"type":"programming","color":"#f3ca0a","extensions":[".parrot"],"tm_scope":"none","ace_mode":"text"},"Parrot Assembly":{"group":"Parrot","type":"programming","aliases":["pasm"],"extensions":[".pasm"],"interpreters":["parrot"],"tm_scope":"none","ace_mode":"text"},"Parrot Internal Representation":{"group":"Parrot","tm_scope":"source.parrot.pir","type":"programming","aliases":["pir"],"extensions":[".pir"],"interpreters":["parrot"],"ace_mode":"text"},"Pascal":{"type":"programming","color":"#E3F171","extensions":[".pas",".dfm",".dpr",".inc",".lpr",".pp"],"ace_mode":"pascal"},"Perl":{"type":"programming","tm_scope":"source.perl","ace_mode":"perl","color":"#0298c3","extensions":[".pl",".al",".cgi",".fcgi",".perl",".ph",".plx",".pm",".pod",".psgi",".t"],"interpreters":["perl"]},"Perl6":{"type":"programming","color":"#0000fb","extensions":[".6pl",".6pm",".nqp",".p6",".p6l",".p6m",".pl",".pl6",".pm",".pm6",".t"],"filenames":["Rexfile"],"interpreters":["perl6"],"tm_scope":"source.perl6fe","ace_mode":"perl"},"Pickle":{"type":"data","extensions":[".pkl"],"tm_scope":"none","ace_mode":"text"},"PicoLisp":{"type":"programming","extensions":[".l"],"interpreters":["picolisp","pil"],"tm_scope":"source.lisp","ace_mode":"lisp"},"PigLatin":{"type":"programming","color":"#fcd7de","extensions":[".pig"],"tm_scope":"source.pig_latin","ace_mode":"text"},"Pike":{"type":"programming","color":"#005390","extensions":[".pike",".pmod"],"interpreters":["pike"],"ace_mode":"text"},"Pod":{"type":"prose","ace_mode":"perl","wrap":true,"extensions":[".pod"],"tm_scope":"none"},"PogoScript":{"type":"programming","color":"#d80074","extensions":[".pogo"],"tm_scope":"source.pogoscript","ace_mode":"text"},"Pony":{"type":"programming","extensions":[".pony"],"tm_scope":"source.pony","ace_mode":"text"},"PostScript":{"type":"markup","extensions":[".ps",".eps"],"tm_scope":"source.postscript","aliases":["postscr"],"ace_mode":"text"},"PowerShell":{"type":"programming","ace_mode":"powershell","aliases":["posh"],"extensions":[".ps1",".psd1",".psm1"]},"Processing":{"type":"programming","color":"#0096D8","extensions":[".pde"],"ace_mode":"text"},"Prolog":{"type":"programming","color":"#74283c","extensions":[".pl",".pro",".prolog",".yap"],"interpreters":["swipl","yap"],"tm_scope":"source.prolog","ace_mode":"prolog"},"Propeller Spin":{"type":"programming","color":"#7fa2a7","extensions":[".spin"],"tm_scope":"source.spin","ace_mode":"text"},"Protocol Buffer":{"type":"markup","aliases":["protobuf","Protocol Buffers"],"extensions":[".proto"],"tm_scope":"source.protobuf","ace_mode":"protobuf"},"Public Key":{"type":"data","extensions":[".asc",".pub"],"tm_scope":"none","ace_mode":"text"},"Puppet":{"type":"programming","color":"#302B6D","extensions":[".pp"],"filenames":["Modulefile"],"ace_mode":"text"},"Pure Data":{"type":"programming","color":"#91de79","extensions":[".pd"],"tm_scope":"none","ace_mode":"text"},"PureBasic":{"type":"programming","color":"#5a6986","extensions":[".pb",".pbi"],"tm_scope":"none","ace_mode":"text"},"PureScript":{"type":"programming","color":"#1D222D","extensions":[".purs"],"tm_scope":"source.purescript","ace_mode":"haskell"},"Python":{"type":"programming","ace_mode":"python","color":"#3572A5","extensions":[".py",".bzl",".cgi",".fcgi",".gyp",".lmi",".pyde",".pyp",".pyt",".pyw",".rpy",".tac",".wsgi",".xpy"],"filenames":["BUCK","BUILD","SConscript","SConstruct","Snakefile","wscript"],"interpreters":["python","python2","python3"],"aliases":["rusthon"]},"Python traceback":{"type":"data","group":"Python","searchable":false,"extensions":[".pytb"],"tm_scope":"text.python.traceback","ace_mode":"text"},"QML":{"type":"programming","color":"#44a51c","extensions":[".qml",".qbs"],"tm_scope":"source.qml","ace_mode":"text"},"QMake":{"type":"programming","extensions":[".pro",".pri"],"interpreters":["qmake"],"ace_mode":"text"},"R":{"type":"programming","color":"#198CE7","aliases":["R","Rscript","splus"],"extensions":[".r",".rd",".rsx"],"filenames":[".Rprofile"],"interpreters":["Rscript"],"ace_mode":"r"},"RAML":{"type":"markup","ace_mode":"yaml","tm_scope":"source.yaml","color":"#77d9fb","extensions":[".raml"]},"RDoc":{"type":"prose","ace_mode":"rdoc","wrap":true,"extensions":[".rdoc"],"tm_scope":"text.rdoc","color":"#8E84BF"},"REALbasic":{"type":"programming","extensions":[".rbbas",".rbfrm",".rbmnu",".rbres",".rbtbar",".rbuistate"],"tm_scope":"source.vbnet","ace_mode":"text"},"RHTML":{"type":"markup","group":"HTML","extensions":[".rhtml"],"tm_scope":"text.html.erb","aliases":["html+ruby"],"ace_mode":"rhtml"},"RMarkdown":{"type":"prose","wrap":true,"ace_mode":"markdown","extensions":[".rmd"],"tm_scope":"source.gfm"},"Racket":{"type":"programming","color":"#22228f","extensions":[".rkt",".rktd",".rktl",".scrbl"],"interpreters":["racket"],"tm_scope":"source.racket","ace_mode":"lisp"},"Ragel in Ruby Host":{"type":"programming","color":"#9d5200","extensions":[".rl"],"aliases":["ragel-rb","ragel-ruby"],"tm_scope":"none","ace_mode":"text"},"Raw token data":{"type":"data","search_term":"raw","aliases":["raw"],"extensions":[".raw"],"tm_scope":"none","ace_mode":"text"},"Rebol":{"type":"programming","color":"#358a5b","extensions":[".reb",".r",".r2",".r3",".rebol"],"ace_mode":"text","tm_scope":"source.rebol"},"Red":{"type":"programming","color":"#ee0000","extensions":[".red",".reds"],"aliases":["red/system"],"tm_scope":"source.red","ace_mode":"text"},"Redcode":{"type":"programming","extensions":[".cw"],"tm_scope":"none","ace_mode":"text"},"Ren'Py":{"type":"programming","aliases":["renpy"],"color":"#ff7f7f","extensions":[".rpy"],"tm_scope":"source.renpy","ace_mode":"python"},"RenderScript":{"type":"programming","extensions":[".rs",".rsh"],"tm_scope":"none","ace_mode":"text"},"RobotFramework":{"type":"programming","extensions":[".robot"],"tm_scope":"text.robot","ace_mode":"text"},"Rouge":{"type":"programming","ace_mode":"clojure","color":"#cc0088","extensions":[".rg"],"tm_scope":"source.clojure"},"Ruby":{"type":"programming","ace_mode":"ruby","color":"#701516","aliases":["jruby","macruby","rake","rb","rbx"],"extensions":[".rb",".builder",".fcgi",".gemspec",".god",".irbrc",".jbuilder",".mspec",".pluginspec",".podspec",".rabl",".rake",".rbuild",".rbw",".rbx",".ru",".ruby",".thor",".watchr"],"interpreters":["ruby","macruby","rake","jruby","rbx"],"filenames":[".pryrc","Appraisals","Berksfile","Brewfile","Buildfile","Deliverfile","Fastfile","Gemfile","Gemfile.lock","Guardfile","Jarfile","Mavenfile","Podfile","Puppetfile","Snapfile","Thorfile","Vagrantfile","buildfile"]},"Rust":{"type":"programming","color":"#dea584","extensions":[".rs",".rs.in"],"ace_mode":"rust"},"SAS":{"type":"programming","color":"#B34936","extensions":[".sas"],"tm_scope":"source.sas","ace_mode":"text"},"SCSS":{"type":"markup","tm_scope":"source.scss","group":"CSS","ace_mode":"scss","extensions":[".scss"],"color":"#CF649A"},"SMT":{"type":"programming","extensions":[".smt2",".smt"],"interpreters":["boolector","cvc4","mathsat5","opensmt","smtinterpol","smt-rat","stp","verit","yices2","z3"],"tm_scope":"source.smt","ace_mode":"text"},"SPARQL":{"type":"data","tm_scope":"source.sparql","ace_mode":"text","extensions":[".sparql",".rq"]},"SQF":{"type":"programming","color":"#3F3F3F","extensions":[".sqf",".hqf"],"tm_scope":"source.sqf","ace_mode":"text"},"SQL":{"type":"data","tm_scope":"source.sql","ace_mode":"sql","extensions":[".sql",".cql",".ddl",".inc",".prc",".tab",".udf",".viw"]},"SQLPL":{"type":"programming","ace_mode":"sql","tm_scope":"source.sql","extensions":[".sql",".db2"]},"STON":{"type":"data","group":"Smalltalk","extensions":[".ston"],"tm_scope":"source.smalltalk","ace_mode":"text"},"SVG":{"type":"data","extensions":[".svg"],"tm_scope":"text.xml","ace_mode":"xml"},"Sage":{"type":"programming","group":"Python","extensions":[".sage",".sagews"],"tm_scope":"source.python","ace_mode":"python"},"SaltStack":{"type":"programming","color":"#646464","aliases":["saltstate","salt"],"extensions":[".sls"],"tm_scope":"source.yaml.salt","ace_mode":"yaml"},"Sass":{"type":"markup","tm_scope":"source.sass","group":"CSS","extensions":[".sass"],"ace_mode":"sass","color":"#CF649A"},"Scala":{"type":"programming","ace_mode":"scala","color":"#DC322F","extensions":[".scala",".sbt",".sc"],"interpreters":["scala"]},"Scaml":{"group":"HTML","type":"markup","extensions":[".scaml"],"tm_scope":"source.scaml","ace_mode":"text"},"Scheme":{"type":"programming","color":"#1e4aec","extensions":[".scm",".sld",".sls",".sps",".ss"],"interpreters":["guile","bigloo","chicken"],"ace_mode":"scheme"},"Scilab":{"type":"programming","extensions":[".sci",".sce",".tst"],"ace_mode":"text"},"Self":{"type":"programming","color":"#0579aa","extensions":[".self"],"tm_scope":"none","ace_mode":"text"},"Shell":{"type":"programming","search_term":"bash","color":"#89e051","aliases":["sh","shell-script","bash","zsh"],"extensions":[".sh",".bash",".bats",".cgi",".command",".fcgi",".ksh",".sh.in",".tmux",".tool",".zsh"],"interpreters":["bash","rc","sh","zsh"],"ace_mode":"sh"},"ShellSession":{"type":"programming","extensions":[".sh-session"],"aliases":["bash session","console"],"tm_scope":"text.shell-session","ace_mode":"sh"},"Shen":{"type":"programming","color":"#120F14","extensions":[".shen"],"tm_scope":"none","ace_mode":"text"},"Slash":{"type":"programming","color":"#007eff","extensions":[".sl"],"tm_scope":"text.html.slash","ace_mode":"text"},"Slim":{"group":"HTML","type":"markup","color":"#ff8f77","extensions":[".slim"],"tm_scope":"text.slim","ace_mode":"text"},"Smali":{"type":"programming","extensions":[".smali"],"ace_mode":"text","tm_scope":"source.smali"},"Smalltalk":{"type":"programming","color":"#596706","extensions":[".st",".cs"],"aliases":["squeak"],"ace_mode":"text"},"Smarty":{"type":"programming","extensions":[".tpl"],"ace_mode":"smarty","tm_scope":"text.html.smarty"},"SourcePawn":{"type":"programming","color":"#5c7611","aliases":["sourcemod"],"extensions":[".sp",".inc",".sma"],"tm_scope":"source.sp","ace_mode":"text"},"Squirrel":{"type":"programming","color":"#800000","extensions":[".nut"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"Stan":{"type":"programming","color":"#b2011d","extensions":[".stan"],"ace_mode":"text","tm_scope":"source.stan"},"Standard ML":{"type":"programming","color":"#dc566d","aliases":["sml"],"extensions":[".ML",".fun",".sig",".sml"],"tm_scope":"source.ml","ace_mode":"text"},"Stata":{"type":"programming","extensions":[".do",".ado",".doh",".ihlp",".mata",".matah",".sthlp"],"ace_mode":"text"},"Stylus":{"type":"markup","group":"CSS","extensions":[".styl"],"tm_scope":"source.stylus","ace_mode":"stylus"},"SuperCollider":{"type":"programming","color":"#46390b","extensions":[".sc",".scd"],"interpreters":["sclang","scsynth"],"tm_scope":"source.supercollider","ace_mode":"text"},"Swift":{"type":"programming","color":"#ffac45","extensions":[".swift"],"ace_mode":"text"},"SystemVerilog":{"type":"programming","color":"#DAE1C2","extensions":[".sv",".svh",".vh"],"ace_mode":"verilog"},"TOML":{"type":"data","extensions":[".toml"],"tm_scope":"source.toml","ace_mode":"toml"},"TXL":{"type":"programming","extensions":[".txl"],"tm_scope":"source.txl","ace_mode":"text"},"Tcl":{"type":"programming","color":"#e4cc98","extensions":[".tcl",".adp",".tm"],"interpreters":["tclsh","wish"],"ace_mode":"tcl"},"Tcsh":{"type":"programming","group":"Shell","extensions":[".tcsh",".csh"],"tm_scope":"source.shell","ace_mode":"sh"},"TeX":{"type":"markup","color":"#3D6117","ace_mode":"tex","wrap":true,"aliases":["latex"],"extensions":[".tex",".aux",".bbx",".bib",".cbx",".cls",".dtx",".ins",".lbx",".ltx",".mkii",".mkiv",".mkvi",".sty",".toc"]},"Tea":{"type":"markup","extensions":[".tea"],"tm_scope":"source.tea","ace_mode":"text"},"Text":{"type":"prose","wrap":true,"aliases":["fundamental"],"extensions":[".txt",".fr",".nb",".ncl",".no"],"filenames":["COPYING","INSTALL","LICENSE","NEWS","README.me","click.me","delete.me","keep.me","read.me","test.me"],"tm_scope":"none","ace_mode":"text"},"Textile":{"type":"prose","ace_mode":"textile","wrap":true,"extensions":[".textile"],"tm_scope":"none"},"Thrift":{"type":"programming","tm_scope":"source.thrift","extensions":[".thrift"],"ace_mode":"text"},"Turing":{"type":"programming","color":"#45f715","extensions":[".t",".tu"],"tm_scope":"none","ace_mode":"text"},"Turtle":{"type":"data","extensions":[".ttl"],"tm_scope":"source.turtle","ace_mode":"text"},"Twig":{"type":"markup","group":"HTML","extensions":[".twig"],"tm_scope":"text.html.twig","ace_mode":"twig"},"TypeScript":{"type":"programming","color":"#2b7489","aliases":["ts"],"extensions":[".ts",".tsx"],"tm_scope":"source.ts","ace_mode":"typescript"},"Unified Parallel C":{"type":"programming","group":"C","ace_mode":"c_cpp","color":"#4e3617","extensions":[".upc"],"tm_scope":"source.c"},"Unity3D Asset":{"type":"data","ace_mode":"yaml","extensions":[".anim",".asset",".mat",".meta",".prefab",".unity"],"tm_scope":"source.yaml"},"Uno":{"type":"programming","extensions":[".uno"],"ace_mode":"csharp","tm_scope":"source.cs"},"UnrealScript":{"type":"programming","color":"#a54c4d","extensions":[".uc"],"tm_scope":"source.java","ace_mode":"java"},"UrWeb":{"type":"programming","aliases":["Ur/Web","Ur"],"extensions":[".ur",".urs"],"tm_scope":"source.ur","ace_mode":"text"},"VCL":{"group":"Perl","type":"programming","extensions":[".vcl"],"tm_scope":"source.varnish.vcl","ace_mode":"text"},"VHDL":{"type":"programming","color":"#adb2cb","extensions":[".vhdl",".vhd",".vhf",".vhi",".vho",".vhs",".vht",".vhw"],"ace_mode":"vhdl"},"Vala":{"type":"programming","color":"#fbe5cd","extensions":[".vala",".vapi"],"ace_mode":"vala"},"Verilog":{"type":"programming","color":"#b2b7f8","extensions":[".v",".veo"],"ace_mode":"verilog"},"VimL":{"type":"programming","color":"#199f4b","search_term":"vim","aliases":["vim","nvim"],"extensions":[".vim"],"filenames":[".nvimrc",".vimrc","_vimrc","gvimrc","nvimrc","vimrc"],"ace_mode":"text"},"Visual Basic":{"type":"programming","color":"#945db7","extensions":[".vb",".bas",".cls",".frm",".frx",".vba",".vbhtml",".vbs"],"tm_scope":"source.vbnet","aliases":["vb.net","vbnet"],"ace_mode":"text"},"Volt":{"type":"programming","color":"#1F1F1F","extensions":[".volt"],"tm_scope":"source.d","ace_mode":"d"},"Vue":{"type":"markup","color":"#2c3e50","extensions":[".vue"],"tm_scope":"text.html.vue","ace_mode":"html"},"Web Ontology Language":{"type":"markup","color":"#9cc9dd","extensions":[".owl"],"tm_scope":"text.xml","ace_mode":"xml"},"WebIDL":{"type":"programming","extensions":[".webidl"],"tm_scope":"source.webidl","ace_mode":"text"},"X10":{"type":"programming","aliases":["xten"],"ace_mode":"text","extensions":[".x10"],"color":"#4B6BEF","tm_scope":"source.x10"},"XC":{"type":"programming","color":"#99DA07","extensions":[".xc"],"tm_scope":"source.xc","ace_mode":"c_cpp"},"XML":{"type":"data","ace_mode":"xml","aliases":["rss","xsd","wsdl"],"extensions":[".xml",".ant",".axml",".ccxml",".clixml",".cproject",".csl",".csproj",".ct",".dita",".ditamap",".ditaval",".dll.config",".filters",".fsproj",".fxml",".glade",".gml",".grxml",".iml",".ivy",".jelly",".jsproj",".kml",".launch",".mdpolicy",".mm",".mod",".mxml",".nproj",".nuspec",".odd",".osm",".plist",".pluginspec",".props",".ps1xml",".psc1",".pt",".rdf",".rss",".scxml",".srdf",".storyboard",".stTheme",".sublime-snippet",".targets",".tmCommand",".tml",".tmLanguage",".tmPreferences",".tmSnippet",".tmTheme",".ts",".tsx",".ui",".urdf",".ux",".vbproj",".vcxproj",".vxml",".wsdl",".wsf",".wxi",".wxl",".wxs",".x3d",".xacro",".xaml",".xib",".xlf",".xliff",".xmi",".xml.dist",".xproj",".xsd",".xul",".zcml"],"filenames":[".classpath",".project","Settings.StyleCop","Web.Debug.config","Web.Release.config","Web.config","packages.config"]},"XPages":{"type":"programming","extensions":[".xsp-config",".xsp.metadata"],"tm_scope":"none","ace_mode":"xml"},"XProc":{"type":"programming","extensions":[".xpl",".xproc"],"tm_scope":"text.xml","ace_mode":"xml"},"XQuery":{"type":"programming","color":"#5232e7","extensions":[".xquery",".xq",".xql",".xqm",".xqy"],"ace_mode":"xquery","tm_scope":"source.xq"},"XS":{"type":"programming","extensions":[".xs"],"tm_scope":"source.c","ace_mode":"c_cpp"},"XSLT":{"type":"programming","aliases":["xsl"],"extensions":[".xslt",".xsl"],"tm_scope":"text.xml.xsl","ace_mode":"xml","color":"#EB8CEB"},"Xojo":{"type":"programming","extensions":[".xojo_code",".xojo_menu",".xojo_report",".xojo_script",".xojo_toolbar",".xojo_window"],"tm_scope":"source.vbnet","ace_mode":"text"},"Xtend":{"type":"programming","extensions":[".xtend"],"ace_mode":"text"},"YAML":{"type":"data","tm_scope":"source.yaml","aliases":["yml"],"extensions":[".yml",".reek",".rviz",".sublime-syntax",".syntax",".yaml",".yaml-tmlanguage"],"ace_mode":"yaml"},"YANG":{"type":"data","extensions":[".yang"],"tm_scope":"source.yang","ace_mode":"text"},"Yacc":{"type":"programming","extensions":[".y",".yacc",".yy"],"tm_scope":"source.bison","ace_mode":"text","color":"#4B6C4B"},"Zephir":{"type":"programming","color":"#118f9e","extensions":[".zep"],"tm_scope":"source.php.zephir","ace_mode":"php"},"Zimpl":{"type":"programming","extensions":[".zimpl",".zmpl",".zpl"],"tm_scope":"none","ace_mode":"text"},"desktop":{"type":"data","extensions":[".desktop",".desktop.in"],"tm_scope":"source.desktop","ace_mode":"text"},"eC":{"type":"programming","color":"#913960","search_term":"ec","extensions":[".ec",".eh"],"tm_scope":"source.c.ec","ace_mode":"text"},"edn":{"type":"data","ace_mode":"clojure","extensions":[".edn"],"tm_scope":"source.clojure"},"fish":{"type":"programming","group":"Shell","extensions":[".fish"],"tm_scope":"source.fish","ace_mode":"text"},"mupad":{"type":"programming","extensions":[".mu"],"ace_mode":"text"},"nesC":{"type":"programming","color":"#94B0C7","extensions":[".nc"],"ace_mode":"text"},"ooc":{"type":"programming","color":"#b0b77e","extensions":[".ooc"],"ace_mode":"text"},"reStructuredText":{"type":"prose","wrap":true,"search_term":"rst","aliases":["rst"],"extensions":[".rst",".rest",".rest.txt",".rst.txt"],"ace_mode":"text","color":"#B3BCBC"},"wisp":{"type":"programming","ace_mode":"clojure","color":"#7582D1","extensions":[".wisp"],"tm_scope":"source.clojure"},"xBase":{"type":"programming","color":"#403a40","aliases":["advpl","clipper","foxpro"],"extensions":[".prg",".ch",".prw"],"tm_scope":"source.harbour","ace_mode":"text"}}
|
1
|
+
{"ABAP":{"type":"programming","color":"#E8274B","extensions":[".abap"],"ace_mode":"abap"},"AGS Script":{"type":"programming","color":"#B9D9FF","aliases":["ags"],"extensions":[".asc",".ash"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"AMPL":{"type":"programming","color":"#E6EFBB","extensions":[".ampl",".mod"],"tm_scope":"source.ampl","ace_mode":"text"},"ANTLR":{"type":"programming","color":"#9DC3FF","extensions":[".g4"],"ace_mode":"text"},"API Blueprint":{"type":"markup","color":"#2ACCA8","ace_mode":"markdown","extensions":[".apib"],"tm_scope":"text.html.markdown.source.gfm.apib"},"APL":{"type":"programming","color":"#5A8164","extensions":[".apl",".dyalog"],"tm_scope":"source.apl","ace_mode":"text"},"ASP":{"type":"programming","color":"#6a40fd","search_term":"aspx-vb","tm_scope":"text.html.asp","aliases":["aspx","aspx-vb"],"extensions":[".asp",".asax",".ascx",".ashx",".asmx",".aspx",".axd"],"ace_mode":"text"},"ATS":{"type":"programming","color":"#1ac620","aliases":["ats2"],"extensions":[".dats",".hats",".sats"],"tm_scope":"source.ats","ace_mode":"ocaml"},"ActionScript":{"type":"programming","tm_scope":"source.actionscript.3","color":"#882B0F","search_term":"as3","aliases":["actionscript 3","actionscript3","as3"],"extensions":[".as"],"ace_mode":"actionscript"},"Ada":{"type":"programming","color":"#02f88c","extensions":[".adb",".ada",".ads"],"aliases":["ada95","ada2005"],"ace_mode":"ada"},"Agda":{"type":"programming","color":"#315665","extensions":[".agda"],"ace_mode":"text"},"Alloy":{"type":"programming","color":"#64C800","extensions":[".als"],"ace_mode":"text"},"Ant Build System":{"type":"data","tm_scope":"text.xml.ant","filenames":["ant.xml","build.xml"],"ace_mode":"xml"},"ApacheConf":{"type":"markup","aliases":["aconf","apache"],"extensions":[".apacheconf",".vhost"],"tm_scope":"source.apache-config","ace_mode":"apache_conf"},"Apex":{"type":"programming","extensions":[".cls"],"tm_scope":"source.java","ace_mode":"java"},"AppleScript":{"type":"programming","aliases":["osascript"],"extensions":[".applescript",".scpt"],"interpreters":["osascript"],"ace_mode":"applescript","color":"#101F1F"},"Arc":{"type":"programming","color":"#aa2afe","extensions":[".arc"],"tm_scope":"none","ace_mode":"text"},"Arduino":{"type":"programming","color":"#bd79d1","extensions":[".ino"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"AsciiDoc":{"type":"prose","ace_mode":"asciidoc","wrap":true,"extensions":[".asciidoc",".adoc",".asc"],"tm_scope":"text.html.asciidoc"},"AspectJ":{"type":"programming","color":"#a957b0","extensions":[".aj"],"tm_scope":"source.aspectj","ace_mode":"text"},"Assembly":{"type":"programming","color":"#6E4C13","search_term":"nasm","aliases":["nasm"],"extensions":[".asm",".a51",".inc",".nasm"],"tm_scope":"source.assembly","ace_mode":"assembly_x86"},"Augeas":{"type":"programming","extensions":[".aug"],"tm_scope":"none","ace_mode":"text"},"AutoHotkey":{"type":"programming","color":"#6594b9","aliases":["ahk"],"extensions":[".ahk",".ahkl"],"tm_scope":"source.ahk","ace_mode":"autohotkey"},"AutoIt":{"type":"programming","color":"#1C3552","aliases":["au3","AutoIt3","AutoItScript"],"extensions":[".au3"],"tm_scope":"none","ace_mode":"autohotkey"},"Awk":{"type":"programming","extensions":[".awk",".auk",".gawk",".mawk",".nawk"],"interpreters":["awk","gawk","mawk","nawk"],"ace_mode":"text"},"Batchfile":{"type":"programming","search_term":"bat","aliases":["bat","batch","dosbatch","winbatch"],"extensions":[".bat",".cmd"],"tm_scope":"source.dosbatch","ace_mode":"batchfile","color":"#C1F12E"},"Befunge":{"type":"programming","extensions":[".befunge"],"ace_mode":"text"},"Bison":{"type":"programming","group":"Yacc","tm_scope":"source.bison","extensions":[".bison"],"ace_mode":"text","color":"#6A463F"},"BitBake":{"type":"programming","tm_scope":"none","extensions":[".bb"],"ace_mode":"text"},"BlitzBasic":{"type":"programming","aliases":["b3d","blitz3d","blitzplus","bplus"],"extensions":[".bb",".decls"],"tm_scope":"source.blitzmax","ace_mode":"text"},"BlitzMax":{"type":"programming","color":"#cd6400","extensions":[".bmx"],"aliases":["bmax"],"ace_mode":"text"},"Bluespec":{"type":"programming","extensions":[".bsv"],"tm_scope":"source.bsv","ace_mode":"verilog"},"Boo":{"type":"programming","color":"#d4bec1","extensions":[".boo"],"ace_mode":"text","tm_scope":"source.boo"},"Brainfuck":{"type":"programming","color":"#2F2530","extensions":[".b",".bf"],"tm_scope":"source.bf","ace_mode":"text"},"Brightscript":{"type":"programming","extensions":[".brs"],"tm_scope":"source.brightscript","ace_mode":"text"},"Bro":{"type":"programming","extensions":[".bro"],"ace_mode":"text"},"C":{"type":"programming","color":"#555555","extensions":[".c",".cats",".h",".idc",".w"],"interpreters":["tcc"],"ace_mode":"c_cpp"},"C#":{"type":"programming","ace_mode":"csharp","tm_scope":"source.cs","search_term":"csharp","color":"#178600","aliases":["csharp"],"extensions":[".cs",".cake",".cshtml",".csx"]},"C++":{"type":"programming","ace_mode":"c_cpp","search_term":"cpp","color":"#f34b7d","aliases":["cpp"],"extensions":[".cpp",".c++",".cc",".cp",".cxx",".h",".h++",".hh",".hpp",".hxx",".inc",".inl",".ipp",".tcc",".tpp"]},"C-ObjDump":{"type":"data","extensions":[".c-objdump"],"tm_scope":"objdump.x86asm","ace_mode":"assembly_x86"},"C2hs Haskell":{"type":"programming","group":"Haskell","aliases":["c2hs"],"extensions":[".chs"],"tm_scope":"source.haskell","ace_mode":"haskell"},"CLIPS":{"type":"programming","extensions":[".clp"],"tm_scope":"none","ace_mode":"text"},"CMake":{"type":"programming","extensions":[".cmake",".cmake.in"],"filenames":["CMakeLists.txt"],"ace_mode":"text"},"COBOL":{"type":"programming","extensions":[".cob",".cbl",".ccp",".cobol",".cpy"],"ace_mode":"cobol"},"CSS":{"type":"markup","tm_scope":"source.css","ace_mode":"css","color":"#563d7c","extensions":[".css"]},"CSV":{"type":"data","ace_mode":"text","tm_scope":"none","extensions":[".csv"]},"Cap'n Proto":{"type":"programming","tm_scope":"source.capnp","extensions":[".capnp"],"ace_mode":"text"},"CartoCSS":{"type":"programming","aliases":["Carto"],"extensions":[".mss"],"ace_mode":"text","tm_scope":"source.css.mss"},"Ceylon":{"type":"programming","extensions":[".ceylon"],"ace_mode":"text"},"Chapel":{"type":"programming","color":"#8dc63f","aliases":["chpl"],"extensions":[".chpl"],"ace_mode":"text"},"Charity":{"type":"programming","extensions":[".ch"],"tm_scope":"none","ace_mode":"text"},"ChucK":{"type":"programming","extensions":[".ck"],"tm_scope":"source.java","ace_mode":"java"},"Cirru":{"type":"programming","color":"#ccccff","ace_mode":"cirru","extensions":[".cirru"]},"Clarion":{"type":"programming","color":"#db901e","ace_mode":"text","extensions":[".clw"],"tm_scope":"source.clarion"},"Clean":{"type":"programming","color":"#3F85AF","extensions":[".icl",".dcl"],"tm_scope":"none","ace_mode":"text"},"Click":{"type":"programming","color":"#E4E6F3","extensions":[".click"],"tm_scope":"source.click","ace_mode":"text"},"Clojure":{"type":"programming","ace_mode":"clojure","color":"#db5855","extensions":[".clj",".boot",".cl2",".cljc",".cljs",".cljs.hl",".cljscm",".cljx",".hic"],"filenames":["riemann.config"]},"CoffeeScript":{"type":"programming","tm_scope":"source.coffee","ace_mode":"coffee","color":"#244776","aliases":["coffee","coffee-script"],"extensions":[".coffee","._coffee",".cake",".cjsx",".cson",".iced"],"filenames":["Cakefile"],"interpreters":["coffee"]},"ColdFusion":{"type":"programming","group":"ColdFusion","ace_mode":"coldfusion","color":"#ed2cd6","search_term":"cfm","aliases":["cfm","cfml","coldfusion html"],"extensions":[".cfm",".cfml"],"tm_scope":"text.html.cfm"},"ColdFusion CFC":{"type":"programming","group":"ColdFusion","ace_mode":"coldfusion","color":"#ed2cd6","search_term":"cfc","aliases":["cfc"],"extensions":[".cfc"],"tm_scope":"source.cfscript"},"Common Lisp":{"type":"programming","tm_scope":"source.lisp","color":"#3fb68b","aliases":["lisp"],"extensions":[".lisp",".asd",".cl",".l",".lsp",".ny",".podsl",".sexp"],"interpreters":["lisp","sbcl","ccl","clisp","ecl"],"ace_mode":"lisp"},"Component Pascal":{"type":"programming","color":"#B0CE4E","extensions":[".cp",".cps"],"tm_scope":"source.pascal","aliases":["delphi","objectpascal"],"ace_mode":"pascal"},"Cool":{"type":"programming","extensions":[".cl"],"tm_scope":"source.cool","ace_mode":"text"},"Coq":{"type":"programming","extensions":[".coq",".v"],"ace_mode":"text"},"Cpp-ObjDump":{"type":"data","extensions":[".cppobjdump",".c++-objdump",".c++objdump",".cpp-objdump",".cxx-objdump"],"tm_scope":"objdump.x86asm","aliases":["c++-objdumb"],"ace_mode":"assembly_x86"},"Creole":{"type":"prose","wrap":true,"extensions":[".creole"],"tm_scope":"none","ace_mode":"text"},"Crystal":{"type":"programming","color":"#776791","extensions":[".cr"],"ace_mode":"ruby","tm_scope":"source.crystal","interpreters":["crystal"]},"Cucumber":{"type":"programming","extensions":[".feature"],"tm_scope":"text.gherkin.feature","aliases":["gherkin"],"ace_mode":"text","color":"#5B2063"},"Cuda":{"type":"programming","extensions":[".cu",".cuh"],"tm_scope":"source.cuda-c++","ace_mode":"c_cpp","color":"#3A4E3A"},"Cycript":{"type":"programming","extensions":[".cy"],"tm_scope":"source.js","ace_mode":"javascript"},"Cython":{"type":"programming","group":"Python","extensions":[".pyx",".pxd",".pxi"],"aliases":["pyrex"],"ace_mode":"text"},"D":{"type":"programming","color":"#ba595e","extensions":[".d",".di"],"ace_mode":"d"},"D-ObjDump":{"type":"data","extensions":[".d-objdump"],"tm_scope":"objdump.x86asm","ace_mode":"assembly_x86"},"DIGITAL Command Language":{"type":"programming","aliases":["dcl"],"extensions":[".com"],"tm_scope":"none","ace_mode":"text"},"DM":{"type":"programming","color":"#447265","extensions":[".dm"],"aliases":["byond"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"DNS Zone":{"type":"data","extensions":[".zone",".arpa"],"tm_scope":"text.zone_file","ace_mode":"text"},"DTrace":{"type":"programming","aliases":["dtrace-script"],"extensions":[".d"],"interpreters":["dtrace"],"tm_scope":"source.c","ace_mode":"c_cpp"},"Darcs Patch":{"type":"data","search_term":"dpatch","aliases":["dpatch"],"extensions":[".darcspatch",".dpatch"],"tm_scope":"none","ace_mode":"text"},"Dart":{"type":"programming","color":"#00B4AB","extensions":[".dart"],"ace_mode":"dart"},"Diff":{"type":"data","extensions":[".diff",".patch"],"aliases":["udiff"],"tm_scope":"source.diff","ace_mode":"diff"},"Dockerfile":{"type":"data","tm_scope":"source.dockerfile","extensions":[".dockerfile"],"filenames":["Dockerfile"],"ace_mode":"dockerfile"},"Dogescript":{"type":"programming","color":"#cca760","extensions":[".djs"],"tm_scope":"none","ace_mode":"text"},"Dylan":{"type":"programming","color":"#6c616e","extensions":[".dylan",".dyl",".intr",".lid"],"ace_mode":"text"},"E":{"type":"programming","color":"#ccce35","extensions":[".E"],"tm_scope":"none","ace_mode":"text"},"ECL":{"type":"programming","color":"#8a1267","extensions":[".ecl",".eclxml"],"tm_scope":"none","ace_mode":"text"},"ECLiPSe":{"type":"programming","group":"prolog","extensions":[".ecl"],"tm_scope":"source.prolog.eclipse","ace_mode":"prolog"},"Eagle":{"type":"markup","color":"#814C05","extensions":[".sch",".brd"],"tm_scope":"text.xml","ace_mode":"xml"},"Ecere Projects":{"type":"data","group":"JavaScript","extensions":[".epj"],"tm_scope":"source.json","ace_mode":"json"},"Eiffel":{"type":"programming","color":"#946d57","extensions":[".e"],"ace_mode":"eiffel"},"Elixir":{"type":"programming","color":"#6e4a7e","extensions":[".ex",".exs"],"ace_mode":"elixir","filenames":["mix.lock"],"interpreters":["elixir"]},"Elm":{"type":"programming","color":"#60B5CC","extensions":[".elm"],"tm_scope":"source.elm","ace_mode":"elm"},"Emacs Lisp":{"type":"programming","tm_scope":"source.lisp","color":"#c065db","aliases":["elisp","emacs"],"filenames":[".emacs",".emacs.desktop"],"extensions":[".el",".emacs",".emacs.desktop"],"ace_mode":"lisp"},"EmberScript":{"type":"programming","color":"#FFF4F3","extensions":[".em",".emberscript"],"tm_scope":"source.coffee","ace_mode":"coffee"},"Erlang":{"type":"programming","color":"#B83998","extensions":[".erl",".es",".escript",".hrl",".xrl",".yrl"],"filenames":["rebar.config","rebar.config.lock","rebar.lock"],"ace_mode":"erlang","interpreters":["escript"]},"F#":{"type":"programming","color":"#b845fc","search_term":"fsharp","aliases":["fsharp"],"extensions":[".fs",".fsi",".fsx"],"tm_scope":"source.fsharp","ace_mode":"text"},"FLUX":{"type":"programming","color":"#88ccff","extensions":[".fx",".flux"],"tm_scope":"none","ace_mode":"text"},"FORTRAN":{"type":"programming","color":"#4d41b1","extensions":[".f90",".f",".f03",".f08",".f77",".f95",".for",".fpp"],"tm_scope":"source.fortran.modern","ace_mode":"text"},"Factor":{"type":"programming","color":"#636746","extensions":[".factor"],"filenames":[".factor-boot-rc",".factor-rc"],"ace_mode":"text"},"Fancy":{"type":"programming","color":"#7b9db4","extensions":[".fy",".fancypack"],"filenames":["Fakefile"],"ace_mode":"text"},"Fantom":{"type":"programming","color":"#dbded5","extensions":[".fan"],"tm_scope":"source.fan","ace_mode":"text"},"Filterscript":{"type":"programming","group":"RenderScript","extensions":[".fs"],"tm_scope":"none","ace_mode":"text"},"Formatted":{"type":"data","extensions":[".for",".eam.fs"],"tm_scope":"none","ace_mode":"text"},"Forth":{"type":"programming","color":"#341708","extensions":[".fth",".4th",".f",".for",".forth",".fr",".frt",".fs"],"ace_mode":"forth"},"FreeMarker":{"type":"programming","color":"#0050b2","aliases":["ftl"],"extensions":[".ftl"],"tm_scope":"text.html.ftl","ace_mode":"ftl"},"Frege":{"type":"programming","color":"#00cafe","extensions":[".fr"],"tm_scope":"source.haskell","ace_mode":"haskell"},"G-code":{"type":"data","extensions":[".g",".gco",".gcode"],"tm_scope":"source.gcode","ace_mode":"gcode"},"GAMS":{"type":"programming","extensions":[".gms"],"tm_scope":"none","ace_mode":"text"},"GAP":{"type":"programming","extensions":[".g",".gap",".gd",".gi",".tst"],"tm_scope":"source.gap","ace_mode":"text"},"GAS":{"type":"programming","group":"Assembly","extensions":[".s",".ms"],"tm_scope":"none","ace_mode":"assembly_x86"},"GDScript":{"type":"programming","extensions":[".gd"],"tm_scope":"source.gdscript","ace_mode":"text"},"GLSL":{"type":"programming","extensions":[".glsl",".fp",".frag",".frg",".fs",".fshader",".geo",".geom",".glslv",".gshader",".shader",".vert",".vrx",".vshader"],"ace_mode":"glsl"},"Game Maker Language":{"type":"programming","color":"#8fb200","extensions":[".gml"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"Genshi":{"type":"programming","extensions":[".kid"],"tm_scope":"text.xml.genshi","aliases":["xml+genshi","xml+kid"],"ace_mode":"xml"},"Gentoo Ebuild":{"type":"programming","group":"Shell","extensions":[".ebuild"],"tm_scope":"source.shell","ace_mode":"sh"},"Gentoo Eclass":{"type":"programming","group":"Shell","extensions":[".eclass"],"tm_scope":"source.shell","ace_mode":"sh"},"Gettext Catalog":{"type":"prose","search_term":"pot","searchable":false,"aliases":["pot"],"extensions":[".po",".pot"],"tm_scope":"source.po","ace_mode":"text"},"Glyph":{"type":"programming","color":"#e4cc98","extensions":[".glf"],"tm_scope":"source.tcl","ace_mode":"tcl"},"Gnuplot":{"type":"programming","color":"#f0a9f0","extensions":[".gp",".gnu",".gnuplot",".plot",".plt"],"interpreters":["gnuplot"],"ace_mode":"text"},"Go":{"type":"programming","color":"#375eab","extensions":[".go"],"ace_mode":"golang"},"Golo":{"type":"programming","color":"#88562A","extensions":[".golo"],"tm_scope":"source.golo","ace_mode":"text"},"Gosu":{"type":"programming","color":"#82937f","extensions":[".gs",".gst",".gsx",".vark"],"tm_scope":"source.gosu.2","ace_mode":"text"},"Grace":{"type":"programming","extensions":[".grace"],"tm_scope":"source.grace","ace_mode":"text"},"Gradle":{"type":"data","extensions":[".gradle"],"tm_scope":"source.groovy.gradle","ace_mode":"text"},"Grammatical Framework":{"type":"programming","aliases":["gf"],"wrap":false,"extensions":[".gf"],"searchable":true,"color":"#79aa7a","tm_scope":"source.haskell","ace_mode":"haskell"},"Graph Modeling Language":{"type":"data","extensions":[".gml"],"tm_scope":"none","ace_mode":"text"},"Graphviz (DOT)":{"type":"data","tm_scope":"source.dot","extensions":[".dot",".gv"],"ace_mode":"text"},"Groff":{"type":"markup","extensions":[".man",".1",".1in",".1m",".1x",".2",".3",".3in",".3m",".3qt",".3x",".4",".5",".6",".7",".8",".9",".l",".me",".ms",".n",".rno",".roff"],"tm_scope":"text.groff","aliases":["nroff"],"ace_mode":"text"},"Groovy":{"type":"programming","ace_mode":"groovy","color":"#e69f56","extensions":[".groovy",".grt",".gtpl",".gvy"],"interpreters":["groovy"],"filenames":["Jenkinsfile"]},"Groovy Server Pages":{"type":"programming","group":"Groovy","aliases":["gsp","java server page"],"extensions":[".gsp"],"tm_scope":"text.html.jsp","ace_mode":"jsp"},"HCL":{"type":"programming","extensions":[".hcl",".tf"],"ace_mode":"ruby","tm_scope":"source.ruby"},"HLSL":{"type":"programming","extensions":[".hlsl",".fx",".fxh",".hlsli"],"ace_mode":"text","tm_scope":"none"},"HTML":{"type":"markup","tm_scope":"text.html.basic","ace_mode":"html","color":"#e44b23","aliases":["xhtml"],"extensions":[".html",".htm",".html.hl",".inc",".st",".xht",".xhtml"]},"HTML+Django":{"type":"markup","tm_scope":"text.html.django","group":"HTML","extensions":[".mustache",".jinja"],"aliases":["django","html+django/jinja","html+jinja","htmldjango"],"ace_mode":"django"},"HTML+EEX":{"type":"markup","tm_scope":"text.html.elixir","group":"HTML","aliases":["eex"],"extensions":[".eex"],"ace_mode":"text"},"HTML+ERB":{"type":"markup","tm_scope":"text.html.erb","group":"HTML","aliases":["erb"],"extensions":[".erb",".erb.deface"],"ace_mode":"text"},"HTML+PHP":{"type":"markup","tm_scope":"text.html.php","group":"HTML","extensions":[".phtml"],"ace_mode":"php"},"HTTP":{"type":"data","extensions":[".http"],"tm_scope":"source.httpspec","ace_mode":"text"},"Hack":{"type":"programming","ace_mode":"php","extensions":[".hh",".php"],"tm_scope":"text.html.php","color":"#878787"},"Haml":{"group":"HTML","type":"markup","extensions":[".haml",".haml.deface"],"ace_mode":"haml","color":"#ECE2A9"},"Handlebars":{"type":"markup","color":"#01a9d6","group":"HTML","aliases":["hbs","htmlbars"],"extensions":[".handlebars",".hbs"],"tm_scope":"text.html.handlebars","ace_mode":"handlebars"},"Harbour":{"type":"programming","color":"#0e60e3","extensions":[".hb"],"tm_scope":"source.harbour","ace_mode":"text"},"Haskell":{"type":"programming","color":"#29b544","extensions":[".hs",".hsc"],"ace_mode":"haskell"},"Haxe":{"type":"programming","ace_mode":"haxe","color":"#df7900","extensions":[".hx",".hxsl"],"tm_scope":"source.haxe.2"},"Hy":{"type":"programming","ace_mode":"text","color":"#7790B2","extensions":[".hy"],"aliases":["hylang"],"tm_scope":"source.hy"},"HyPhy":{"type":"programming","ace_mode":"text","extensions":[".bf"],"tm_scope":"none"},"IDL":{"type":"programming","color":"#a3522f","extensions":[".pro",".dlm"],"ace_mode":"text"},"IGOR Pro":{"type":"programming","extensions":[".ipf"],"aliases":["igor","igorpro"],"tm_scope":"none","ace_mode":"text"},"INI":{"type":"data","extensions":[".ini",".cfg",".prefs",".pro",".properties"],"tm_scope":"source.ini","aliases":["dosini"],"ace_mode":"ini"},"IRC log":{"type":"data","search_term":"irc","aliases":["irc","irc logs"],"extensions":[".irclog",".weechatlog"],"tm_scope":"none","ace_mode":"text"},"Idris":{"type":"programming","extensions":[".idr",".lidr"],"ace_mode":"text","tm_scope":"none"},"Inform 7":{"type":"programming","wrap":true,"extensions":[".ni",".i7x"],"tm_scope":"source.inform7","aliases":["i7","inform7"],"ace_mode":"text"},"Inno Setup":{"type":"programming","extensions":[".iss"],"tm_scope":"none","ace_mode":"text"},"Io":{"type":"programming","color":"#a9188d","extensions":[".io"],"ace_mode":"io"},"Ioke":{"type":"programming","color":"#078193","extensions":[".ik"],"interpreters":["ioke"],"ace_mode":"text"},"Isabelle":{"type":"programming","color":"#FEFE00","extensions":[".thy"],"tm_scope":"source.isabelle.theory","ace_mode":"text"},"Isabelle ROOT":{"type":"programming","group":"Isabelle","filenames":["ROOT"],"tm_scope":"source.isabelle.root","ace_mode":"text"},"J":{"type":"programming","color":"#9EEDFF","extensions":[".ijs"],"tm_scope":"source.j","ace_mode":"text"},"JFlex":{"type":"programming","color":"#DBCA00","group":"Lex","extensions":[".flex",".jflex"],"tm_scope":"source.jflex","ace_mode":"text"},"JSON":{"type":"data","tm_scope":"source.json","group":"JavaScript","ace_mode":"json","searchable":false,"extensions":[".json",".geojson",".lock",".topojson"],"filenames":[".jshintrc","composer.lock"]},"JSON5":{"type":"data","extensions":[".json5"],"tm_scope":"source.js","ace_mode":"javascript"},"JSONLD":{"type":"data","group":"JavaScript","ace_mode":"javascript","extensions":[".jsonld"],"tm_scope":"source.js"},"JSONiq":{"color":"#40d47e","type":"programming","ace_mode":"jsoniq","extensions":[".jq"],"tm_scope":"source.jq"},"JSX":{"type":"programming","group":"JavaScript","extensions":[".jsx"],"tm_scope":"source.js.jsx","ace_mode":"javascript"},"Jade":{"group":"HTML","type":"markup","extensions":[".jade"],"tm_scope":"text.jade","ace_mode":"jade"},"Jasmin":{"type":"programming","ace_mode":"java","extensions":[".j"],"tm_scope":"source.jasmin"},"Java":{"type":"programming","ace_mode":"java","color":"#b07219","extensions":[".java"]},"Java Server Pages":{"type":"programming","group":"Java","search_term":"jsp","aliases":["jsp"],"extensions":[".jsp"],"tm_scope":"text.html.jsp","ace_mode":"jsp"},"JavaScript":{"type":"programming","tm_scope":"source.js","ace_mode":"javascript","color":"#f1e05a","aliases":["js","node"],"extensions":[".js","._js",".bones",".es6",".frag",".gs",".jake",".jsb",".jscad",".jsfl",".jsm",".jss",".njs",".pac",".sjs",".ssjs",".sublime-build",".sublime-commands",".sublime-completions",".sublime-keymap",".sublime-macro",".sublime-menu",".sublime-mousemap",".sublime-project",".sublime-settings",".sublime-theme",".sublime-workspace",".sublime_metrics",".sublime_session",".xsjs",".xsjslib"],"filenames":["Jakefile"],"interpreters":["node"]},"Julia":{"type":"programming","extensions":[".jl"],"color":"#a270ba","ace_mode":"julia"},"Jupyter Notebook":{"type":"markup","ace_mode":"json","tm_scope":"source.json","color":"#DA5B0B","extensions":[".ipynb"],"filenames":["Notebook"],"aliases":["IPython Notebook"]},"KRL":{"type":"programming","color":"#28431f","extensions":[".krl"],"tm_scope":"none","ace_mode":"text"},"KiCad":{"type":"programming","extensions":[".sch",".brd",".kicad_pcb"],"tm_scope":"none","ace_mode":"text"},"Kit":{"type":"markup","ace_mode":"html","extensions":[".kit"],"tm_scope":"text.html.basic"},"Kotlin":{"type":"programming","color":"#F18E33","extensions":[".kt",".ktm",".kts"],"tm_scope":"source.Kotlin","ace_mode":"text"},"LFE":{"type":"programming","extensions":[".lfe"],"color":"#004200","group":"Erlang","tm_scope":"source.lisp","ace_mode":"lisp"},"LLVM":{"type":"programming","extensions":[".ll"],"ace_mode":"text","color":"#185619"},"LOLCODE":{"type":"programming","extensions":[".lol"],"color":"#cc9900","tm_scope":"none","ace_mode":"text"},"LSL":{"type":"programming","ace_mode":"lsl","extensions":[".lsl",".lslp"],"interpreters":["lsl"],"color":"#3d9970"},"LabVIEW":{"type":"programming","extensions":[".lvproj"],"tm_scope":"text.xml","ace_mode":"xml"},"Lasso":{"type":"programming","color":"#999999","extensions":[".lasso",".las",".lasso8",".lasso9",".ldml"],"tm_scope":"file.lasso","aliases":["lassoscript"],"ace_mode":"text"},"Latte":{"type":"markup","color":"#A8FF97","group":"HTML","extensions":[".latte"],"tm_scope":"text.html.smarty","ace_mode":"smarty"},"Lean":{"type":"programming","extensions":[".lean",".hlean"],"ace_mode":"lean"},"Less":{"type":"markup","group":"CSS","extensions":[".less"],"tm_scope":"source.css.less","ace_mode":"less","color":"#A1D9A1"},"Lex":{"type":"programming","color":"#DBCA00","aliases":["flex"],"extensions":[".l",".lex"],"tm_scope":"none","ace_mode":"text"},"LilyPond":{"type":"programming","extensions":[".ly",".ily"],"ace_mode":"text"},"Limbo":{"type":"programming","extensions":[".b",".m"],"tm_scope":"none","ace_mode":"text"},"Linker Script":{"type":"data","extensions":[".ld",".lds"],"filenames":["ld.script"],"tm_scope":"none","ace_mode":"text"},"Linux Kernel Module":{"type":"data","extensions":[".mod"],"tm_scope":"none","ace_mode":"text"},"Liquid":{"type":"markup","extensions":[".liquid"],"tm_scope":"text.html.liquid","ace_mode":"liquid"},"Literate Agda":{"type":"programming","group":"Agda","extensions":[".lagda"],"tm_scope":"none","ace_mode":"text"},"Literate CoffeeScript":{"type":"programming","tm_scope":"source.litcoffee","group":"CoffeeScript","ace_mode":"text","wrap":true,"search_term":"litcoffee","aliases":["litcoffee"],"extensions":[".litcoffee"]},"Literate Haskell":{"type":"programming","group":"Haskell","search_term":"lhs","aliases":["lhaskell","lhs"],"extensions":[".lhs"],"tm_scope":"text.tex.latex.haskell","ace_mode":"text"},"LiveScript":{"type":"programming","color":"#499886","aliases":["live-script","ls"],"extensions":[".ls","._ls"],"filenames":["Slakefile"],"ace_mode":"livescript"},"Logos":{"type":"programming","extensions":[".xm",".x",".xi"],"ace_mode":"text","tm_scope":"source.logos"},"Logtalk":{"type":"programming","extensions":[".lgt",".logtalk"],"ace_mode":"text"},"LookML":{"type":"programming","ace_mode":"yaml","color":"#652B81","extensions":[".lookml"],"tm_scope":"source.yaml"},"LoomScript":{"type":"programming","extensions":[".ls"],"tm_scope":"source.loomscript","ace_mode":"text"},"Lua":{"type":"programming","ace_mode":"lua","color":"#000080","extensions":[".lua",".fcgi",".nse",".pd_lua",".rbxs",".wlua"],"interpreters":["lua"]},"M":{"type":"programming","aliases":["mumps"],"extensions":[".mumps",".m"],"tm_scope":"source.lisp","ace_mode":"lisp"},"M4":{"type":"programming","extensions":[".m4"],"tm_scope":"none","ace_mode":"text"},"M4Sugar":{"type":"programming","group":"M4","aliases":["autoconf"],"extensions":[".m4"],"filenames":["configure.ac"],"tm_scope":"none","ace_mode":"text"},"MAXScript":{"type":"programming","color":"#00a6a6","extensions":[".ms",".mcr"],"tm_scope":"source.maxscript","ace_mode":"text"},"MTML":{"type":"markup","color":"#b7e1f4","extensions":[".mtml"],"tm_scope":"text.html.basic","ace_mode":"html"},"MUF":{"type":"programming","group":"Forth","extensions":[".muf",".m"],"tm_scope":"none","ace_mode":"forth"},"Makefile":{"type":"programming","color":"#427819","aliases":["bsdmake","make","mf"],"extensions":[".mak",".d",".mk"],"filenames":["GNUmakefile","Kbuild","Makefile","Makefile.am","Makefile.in","Makefile.inc","makefile"],"interpreters":["make"],"ace_mode":"makefile"},"Mako":{"type":"programming","extensions":[".mako",".mao"],"tm_scope":"text.html.mako","ace_mode":"text"},"Markdown":{"type":"prose","ace_mode":"markdown","wrap":true,"extensions":[".md",".markdown",".mkd",".mkdn",".mkdown",".ron"],"tm_scope":"source.gfm","color":"#083FA1"},"Mask":{"type":"markup","color":"#f97732","ace_mode":"mask","extensions":[".mask"],"tm_scope":"source.mask"},"Mathematica":{"type":"programming","extensions":[".mathematica",".cdf",".m",".ma",".mt",".nb",".nbp",".wl",".wlt"],"aliases":["mma"],"ace_mode":"text"},"Matlab":{"type":"programming","color":"#bb92ac","aliases":["octave"],"extensions":[".matlab",".m"],"ace_mode":"matlab"},"Maven POM":{"type":"data","tm_scope":"text.xml.pom","filenames":["pom.xml"],"ace_mode":"xml"},"Max":{"type":"programming","color":"#c4a79c","aliases":["max/msp","maxmsp"],"search_term":"max/msp","extensions":[".maxpat",".maxhelp",".maxproj",".mxt",".pat"],"tm_scope":"source.json","ace_mode":"json"},"MediaWiki":{"type":"prose","wrap":true,"extensions":[".mediawiki",".wiki"],"tm_scope":"text.html.mediawiki","ace_mode":"text"},"Mercury":{"type":"programming","color":"#ff2b2b","ace_mode":"prolog","interpreters":["mmi"],"extensions":[".m",".moo"],"tm_scope":"source.mercury"},"Metal":{"type":"programming","color":"#8f14e9","extensions":[".metal"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"MiniD":{"type":"programming","searchable":false,"extensions":[".minid"],"tm_scope":"none","ace_mode":"text"},"Mirah":{"type":"programming","search_term":"mirah","color":"#c7a938","extensions":[".druby",".duby",".mir",".mirah"],"tm_scope":"source.ruby","ace_mode":"ruby"},"Modelica":{"type":"programming","extensions":[".mo"],"tm_scope":"source.modelica","ace_mode":"text"},"Modula-2":{"type":"programming","extensions":[".mod"],"tm_scope":"source.modula2","ace_mode":"text"},"Module Management System":{"type":"programming","extensions":[".mms",".mmk"],"filenames":["descrip.mmk","descrip.mms"],"tm_scope":"none","ace_mode":"text"},"Monkey":{"type":"programming","extensions":[".monkey"],"ace_mode":"text","tm_scope":"source.monkey"},"Moocode":{"type":"programming","extensions":[".moo"],"tm_scope":"none","ace_mode":"text"},"MoonScript":{"type":"programming","extensions":[".moon"],"interpreters":["moon"],"ace_mode":"text"},"Myghty":{"type":"programming","extensions":[".myt"],"tm_scope":"none","ace_mode":"text"},"NCL":{"type":"programming","color":"#28431f","extensions":[".ncl"],"tm_scope":"source.ncl","ace_mode":"text"},"NL":{"type":"data","extensions":[".nl"],"tm_scope":"none","ace_mode":"text"},"NSIS":{"type":"programming","extensions":[".nsi",".nsh"],"ace_mode":"text"},"Nemerle":{"type":"programming","color":"#3d3c6e","extensions":[".n"],"ace_mode":"text"},"NetLinx":{"type":"programming","color":"#0aa0ff","extensions":[".axs",".axi"],"tm_scope":"source.netlinx","ace_mode":"text"},"NetLinx+ERB":{"type":"programming","color":"#747faa","extensions":[".axs.erb",".axi.erb"],"tm_scope":"source.netlinx.erb","ace_mode":"text"},"NetLogo":{"type":"programming","color":"#ff6375","extensions":[".nlogo"],"tm_scope":"source.lisp","ace_mode":"lisp"},"NewLisp":{"type":"programming","lexer":"NewLisp","color":"#87AED7","extensions":[".nl",".lisp",".lsp"],"interpreters":["newlisp"],"tm_scope":"source.lisp","ace_mode":"lisp"},"Nginx":{"type":"markup","extensions":[".nginxconf",".vhost"],"filenames":["nginx.conf"],"tm_scope":"source.nginx","aliases":["nginx configuration file"],"ace_mode":"text","color":"#9469E9"},"Nimrod":{"type":"programming","color":"#37775b","extensions":[".nim",".nimrod"],"ace_mode":"text","tm_scope":"source.nim"},"Ninja":{"type":"data","tm_scope":"source.ninja","extensions":[".ninja"],"ace_mode":"text"},"Nit":{"type":"programming","color":"#009917","extensions":[".nit"],"tm_scope":"source.nit","ace_mode":"text"},"Nix":{"type":"programming","color":"#7e7eff","extensions":[".nix"],"aliases":["nixos"],"tm_scope":"none","ace_mode":"nix"},"Nu":{"type":"programming","color":"#c9df40","aliases":["nush"],"extensions":[".nu"],"filenames":["Nukefile"],"tm_scope":"source.scheme","ace_mode":"scheme","interpreters":["nush"]},"NumPy":{"type":"programming","group":"Python","extensions":[".numpy",".numpyw",".numsc"],"tm_scope":"none","ace_mode":"text","color":"#9C8AF9"},"OCaml":{"type":"programming","ace_mode":"ocaml","color":"#3be133","extensions":[".ml",".eliom",".eliomi",".ml4",".mli",".mll",".mly"],"interpreters":["ocaml","ocamlrun"],"tm_scope":"source.ocaml"},"ObjDump":{"type":"data","extensions":[".objdump"],"tm_scope":"objdump.x86asm","ace_mode":"assembly_x86"},"Objective-C":{"type":"programming","tm_scope":"source.objc","color":"#438eff","aliases":["obj-c","objc","objectivec"],"extensions":[".m",".h"],"ace_mode":"objectivec"},"Objective-C++":{"type":"programming","tm_scope":"source.objc++","color":"#6866fb","aliases":["obj-c++","objc++","objectivec++"],"extensions":[".mm"],"ace_mode":"objectivec"},"Objective-J":{"type":"programming","color":"#ff0c5a","aliases":["obj-j","objectivej","objj"],"extensions":[".j",".sj"],"tm_scope":"source.js.objj","ace_mode":"text"},"Omgrofl":{"type":"programming","extensions":[".omgrofl"],"color":"#cabbff","tm_scope":"none","ace_mode":"text"},"Opa":{"type":"programming","extensions":[".opa"],"ace_mode":"text"},"Opal":{"type":"programming","color":"#f7ede0","extensions":[".opal"],"tm_scope":"source.opal","ace_mode":"text"},"OpenCL":{"type":"programming","group":"C","extensions":[".cl",".opencl"],"tm_scope":"source.c","ace_mode":"c_cpp"},"OpenEdge ABL":{"type":"programming","aliases":["progress","openedge","abl"],"extensions":[".p",".cls"],"tm_scope":"source.abl","ace_mode":"text"},"OpenSCAD":{"type":"programming","extensions":[".scad"],"tm_scope":"none","ace_mode":"scad"},"Org":{"type":"prose","wrap":true,"extensions":[".org"],"tm_scope":"none","ace_mode":"text"},"Ox":{"type":"programming","extensions":[".ox",".oxh",".oxo"],"tm_scope":"source.ox","ace_mode":"text"},"Oxygene":{"type":"programming","color":"#cdd0e3","extensions":[".oxygene"],"tm_scope":"none","ace_mode":"text"},"Oz":{"type":"programming","color":"#fab738","extensions":[".oz"],"tm_scope":"source.oz","ace_mode":"text"},"PAWN":{"type":"programming","color":"#dbb284","extensions":[".pwn",".inc"],"tm_scope":"source.pawn","ace_mode":"text"},"PHP":{"type":"programming","tm_scope":"text.html.php","ace_mode":"php","color":"#4F5D95","extensions":[".php",".aw",".ctp",".fcgi",".inc",".php3",".php4",".php5",".phps",".phpt"],"filenames":["Phakefile"],"interpreters":["php"],"aliases":["inc"]},"PLSQL":{"type":"programming","ace_mode":"sql","tm_scope":"none","color":"#dad8d8","extensions":[".pls",".pck",".pkb",".pks",".plb",".plsql",".sql"]},"PLpgSQL":{"type":"programming","ace_mode":"pgsql","tm_scope":"source.sql","extensions":[".sql"]},"POV-Ray SDL":{"type":"programming","aliases":["pov-ray","povray"],"extensions":[".pov",".inc"],"ace_mode":"text"},"Pan":{"type":"programming","color":"#cc0000","extensions":[".pan"],"tm_scope":"none","ace_mode":"text"},"Papyrus":{"type":"programming","color":"#6600cc","extensions":[".psc"],"tm_scope":"source.papyrus.skyrim","ace_mode":"text"},"Parrot":{"type":"programming","color":"#f3ca0a","extensions":[".parrot"],"tm_scope":"none","ace_mode":"text"},"Parrot Assembly":{"group":"Parrot","type":"programming","aliases":["pasm"],"extensions":[".pasm"],"interpreters":["parrot"],"tm_scope":"none","ace_mode":"text"},"Parrot Internal Representation":{"group":"Parrot","tm_scope":"source.parrot.pir","type":"programming","aliases":["pir"],"extensions":[".pir"],"interpreters":["parrot"],"ace_mode":"text"},"Pascal":{"type":"programming","color":"#E3F171","extensions":[".pas",".dfm",".dpr",".inc",".lpr",".pp"],"ace_mode":"pascal"},"Perl":{"type":"programming","tm_scope":"source.perl","ace_mode":"perl","color":"#0298c3","extensions":[".pl",".al",".cgi",".fcgi",".perl",".ph",".plx",".pm",".pod",".psgi",".t"],"interpreters":["perl"]},"Perl6":{"type":"programming","color":"#0000fb","extensions":[".6pl",".6pm",".nqp",".p6",".p6l",".p6m",".pl",".pl6",".pm",".pm6",".t"],"filenames":["Rexfile"],"interpreters":["perl6"],"tm_scope":"source.perl6fe","ace_mode":"perl"},"Pickle":{"type":"data","extensions":[".pkl"],"tm_scope":"none","ace_mode":"text"},"PicoLisp":{"type":"programming","extensions":[".l"],"interpreters":["picolisp","pil"],"tm_scope":"source.lisp","ace_mode":"lisp"},"PigLatin":{"type":"programming","color":"#fcd7de","extensions":[".pig"],"tm_scope":"source.pig_latin","ace_mode":"text"},"Pike":{"type":"programming","color":"#005390","extensions":[".pike",".pmod"],"interpreters":["pike"],"ace_mode":"text"},"Pod":{"type":"prose","ace_mode":"perl","wrap":true,"extensions":[".pod"],"tm_scope":"none"},"PogoScript":{"type":"programming","color":"#d80074","extensions":[".pogo"],"tm_scope":"source.pogoscript","ace_mode":"text"},"Pony":{"type":"programming","extensions":[".pony"],"tm_scope":"source.pony","ace_mode":"text"},"PostScript":{"type":"markup","extensions":[".ps",".eps"],"tm_scope":"source.postscript","aliases":["postscr"],"ace_mode":"text"},"PowerShell":{"type":"programming","ace_mode":"powershell","aliases":["posh"],"extensions":[".ps1",".psd1",".psm1"]},"Processing":{"type":"programming","color":"#0096D8","extensions":[".pde"],"ace_mode":"text"},"Prolog":{"type":"programming","color":"#74283c","extensions":[".pl",".pro",".prolog",".yap"],"interpreters":["swipl","yap"],"tm_scope":"source.prolog","ace_mode":"prolog"},"Propeller Spin":{"type":"programming","color":"#7fa2a7","extensions":[".spin"],"tm_scope":"source.spin","ace_mode":"text"},"Protocol Buffer":{"type":"markup","aliases":["protobuf","Protocol Buffers"],"extensions":[".proto"],"tm_scope":"source.protobuf","ace_mode":"protobuf"},"Public Key":{"type":"data","extensions":[".asc",".pub"],"tm_scope":"none","ace_mode":"text"},"Puppet":{"type":"programming","color":"#302B6D","extensions":[".pp"],"filenames":["Modulefile"],"ace_mode":"text","tm_scope":"source.puppet"},"Pure Data":{"type":"programming","color":"#91de79","extensions":[".pd"],"tm_scope":"none","ace_mode":"text"},"PureBasic":{"type":"programming","color":"#5a6986","extensions":[".pb",".pbi"],"tm_scope":"none","ace_mode":"text"},"PureScript":{"type":"programming","color":"#1D222D","extensions":[".purs"],"tm_scope":"source.purescript","ace_mode":"haskell"},"Python":{"type":"programming","ace_mode":"python","color":"#3572A5","extensions":[".py",".bzl",".cgi",".fcgi",".gyp",".lmi",".pyde",".pyp",".pyt",".pyw",".rpy",".tac",".wsgi",".xpy"],"filenames":["BUCK","BUILD","SConscript","SConstruct","Snakefile","wscript"],"interpreters":["python","python2","python3"],"aliases":["rusthon"]},"Python traceback":{"type":"data","group":"Python","searchable":false,"extensions":[".pytb"],"tm_scope":"text.python.traceback","ace_mode":"text"},"QML":{"type":"programming","color":"#44a51c","extensions":[".qml",".qbs"],"tm_scope":"source.qml","ace_mode":"text"},"QMake":{"type":"programming","extensions":[".pro",".pri"],"interpreters":["qmake"],"ace_mode":"text"},"R":{"type":"programming","color":"#198CE7","aliases":["R","Rscript","splus"],"extensions":[".r",".rd",".rsx"],"filenames":[".Rprofile"],"interpreters":["Rscript"],"ace_mode":"r"},"RAML":{"type":"markup","ace_mode":"yaml","tm_scope":"source.yaml","color":"#77d9fb","extensions":[".raml"]},"RDoc":{"type":"prose","ace_mode":"rdoc","wrap":true,"extensions":[".rdoc"],"tm_scope":"text.rdoc","color":"#8E84BF"},"REALbasic":{"type":"programming","extensions":[".rbbas",".rbfrm",".rbmnu",".rbres",".rbtbar",".rbuistate"],"tm_scope":"source.vbnet","ace_mode":"text"},"RHTML":{"type":"markup","group":"HTML","extensions":[".rhtml"],"tm_scope":"text.html.erb","aliases":["html+ruby"],"ace_mode":"rhtml"},"RMarkdown":{"type":"prose","wrap":true,"ace_mode":"markdown","extensions":[".rmd"],"tm_scope":"source.gfm"},"Racket":{"type":"programming","color":"#22228f","extensions":[".rkt",".rktd",".rktl",".scrbl"],"interpreters":["racket"],"tm_scope":"source.racket","ace_mode":"lisp"},"Ragel in Ruby Host":{"type":"programming","color":"#9d5200","extensions":[".rl"],"aliases":["ragel-rb","ragel-ruby"],"tm_scope":"none","ace_mode":"text"},"Raw token data":{"type":"data","search_term":"raw","aliases":["raw"],"extensions":[".raw"],"tm_scope":"none","ace_mode":"text"},"Rebol":{"type":"programming","color":"#358a5b","extensions":[".reb",".r",".r2",".r3",".rebol"],"ace_mode":"text","tm_scope":"source.rebol"},"Red":{"type":"programming","color":"#ee0000","extensions":[".red",".reds"],"aliases":["red/system"],"tm_scope":"source.red","ace_mode":"text"},"Redcode":{"type":"programming","extensions":[".cw"],"tm_scope":"none","ace_mode":"text"},"Ren'Py":{"type":"programming","aliases":["renpy"],"color":"#ff7f7f","extensions":[".rpy"],"tm_scope":"source.renpy","ace_mode":"python"},"RenderScript":{"type":"programming","extensions":[".rs",".rsh"],"tm_scope":"none","ace_mode":"text"},"RobotFramework":{"type":"programming","extensions":[".robot"],"tm_scope":"text.robot","ace_mode":"text"},"Rouge":{"type":"programming","ace_mode":"clojure","color":"#cc0088","extensions":[".rg"],"tm_scope":"source.clojure"},"Ruby":{"type":"programming","ace_mode":"ruby","color":"#701516","aliases":["jruby","macruby","rake","rb","rbx"],"extensions":[".rb",".builder",".fcgi",".gemspec",".god",".irbrc",".jbuilder",".mspec",".pluginspec",".podspec",".rabl",".rake",".rbuild",".rbw",".rbx",".ru",".ruby",".thor",".watchr"],"interpreters":["ruby","macruby","rake","jruby","rbx"],"filenames":[".pryrc","Appraisals","Berksfile","Brewfile","Buildfile","Deliverfile","Fastfile","Gemfile","Gemfile.lock","Guardfile","Jarfile","Mavenfile","Podfile","Puppetfile","Snapfile","Thorfile","Vagrantfile","buildfile"]},"Rust":{"type":"programming","color":"#dea584","extensions":[".rs",".rs.in"],"ace_mode":"rust"},"SAS":{"type":"programming","color":"#B34936","extensions":[".sas"],"tm_scope":"source.sas","ace_mode":"text"},"SCSS":{"type":"markup","tm_scope":"source.scss","group":"CSS","ace_mode":"scss","extensions":[".scss"],"color":"#CF649A"},"SMT":{"type":"programming","extensions":[".smt2",".smt"],"interpreters":["boolector","cvc4","mathsat5","opensmt","smtinterpol","smt-rat","stp","verit","yices2","z3"],"tm_scope":"source.smt","ace_mode":"text"},"SPARQL":{"type":"data","tm_scope":"source.sparql","ace_mode":"text","extensions":[".sparql",".rq"]},"SQF":{"type":"programming","color":"#3F3F3F","extensions":[".sqf",".hqf"],"tm_scope":"source.sqf","ace_mode":"text"},"SQL":{"type":"data","tm_scope":"source.sql","ace_mode":"sql","extensions":[".sql",".cql",".ddl",".inc",".prc",".tab",".udf",".viw"]},"SQLPL":{"type":"programming","ace_mode":"sql","tm_scope":"source.sql","extensions":[".sql",".db2"]},"STON":{"type":"data","group":"Smalltalk","extensions":[".ston"],"tm_scope":"source.smalltalk","ace_mode":"text"},"SVG":{"type":"data","extensions":[".svg"],"tm_scope":"text.xml","ace_mode":"xml"},"Sage":{"type":"programming","group":"Python","extensions":[".sage",".sagews"],"tm_scope":"source.python","ace_mode":"python"},"SaltStack":{"type":"programming","color":"#646464","aliases":["saltstate","salt"],"extensions":[".sls"],"tm_scope":"source.yaml.salt","ace_mode":"yaml"},"Sass":{"type":"markup","tm_scope":"source.sass","group":"CSS","extensions":[".sass"],"ace_mode":"sass","color":"#CF649A"},"Scala":{"type":"programming","ace_mode":"scala","color":"#DC322F","extensions":[".scala",".sbt",".sc"],"interpreters":["scala"]},"Scaml":{"group":"HTML","type":"markup","extensions":[".scaml"],"tm_scope":"source.scaml","ace_mode":"text"},"Scheme":{"type":"programming","color":"#1e4aec","extensions":[".scm",".sld",".sls",".sps",".ss"],"interpreters":["guile","bigloo","chicken"],"ace_mode":"scheme"},"Scilab":{"type":"programming","extensions":[".sci",".sce",".tst"],"ace_mode":"text"},"Self":{"type":"programming","color":"#0579aa","extensions":[".self"],"tm_scope":"none","ace_mode":"text"},"Shell":{"type":"programming","search_term":"bash","color":"#89e051","aliases":["sh","shell-script","bash","zsh"],"extensions":[".sh",".bash",".bats",".cgi",".command",".fcgi",".ksh",".sh.in",".tmux",".tool",".zsh"],"interpreters":["bash","rc","sh","zsh"],"ace_mode":"sh"},"ShellSession":{"type":"programming","extensions":[".sh-session"],"aliases":["bash session","console"],"tm_scope":"text.shell-session","ace_mode":"sh"},"Shen":{"type":"programming","color":"#120F14","extensions":[".shen"],"tm_scope":"none","ace_mode":"text"},"Slash":{"type":"programming","color":"#007eff","extensions":[".sl"],"tm_scope":"text.html.slash","ace_mode":"text"},"Slim":{"group":"HTML","type":"markup","color":"#ff8f77","extensions":[".slim"],"tm_scope":"text.slim","ace_mode":"text"},"Smali":{"type":"programming","extensions":[".smali"],"ace_mode":"text","tm_scope":"source.smali"},"Smalltalk":{"type":"programming","color":"#596706","extensions":[".st",".cs"],"aliases":["squeak"],"ace_mode":"text"},"Smarty":{"type":"programming","extensions":[".tpl"],"ace_mode":"smarty","tm_scope":"text.html.smarty"},"SourcePawn":{"type":"programming","color":"#5c7611","aliases":["sourcemod"],"extensions":[".sp",".inc",".sma"],"tm_scope":"source.sp","ace_mode":"text"},"Squirrel":{"type":"programming","color":"#800000","extensions":[".nut"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"Stan":{"type":"programming","color":"#b2011d","extensions":[".stan"],"ace_mode":"text","tm_scope":"source.stan"},"Standard ML":{"type":"programming","color":"#dc566d","aliases":["sml"],"extensions":[".ML",".fun",".sig",".sml"],"tm_scope":"source.ml","ace_mode":"text"},"Stata":{"type":"programming","extensions":[".do",".ado",".doh",".ihlp",".mata",".matah",".sthlp"],"ace_mode":"text"},"Stylus":{"type":"markup","group":"CSS","extensions":[".styl"],"tm_scope":"source.stylus","ace_mode":"stylus"},"SuperCollider":{"type":"programming","color":"#46390b","extensions":[".sc",".scd"],"interpreters":["sclang","scsynth"],"tm_scope":"source.supercollider","ace_mode":"text"},"Swift":{"type":"programming","color":"#ffac45","extensions":[".swift"],"ace_mode":"text"},"SystemVerilog":{"type":"programming","color":"#DAE1C2","extensions":[".sv",".svh",".vh"],"ace_mode":"verilog"},"TOML":{"type":"data","extensions":[".toml"],"tm_scope":"source.toml","ace_mode":"toml"},"TXL":{"type":"programming","extensions":[".txl"],"tm_scope":"source.txl","ace_mode":"text"},"Tcl":{"type":"programming","color":"#e4cc98","extensions":[".tcl",".adp",".tm"],"interpreters":["tclsh","wish"],"ace_mode":"tcl"},"Tcsh":{"type":"programming","group":"Shell","extensions":[".tcsh",".csh"],"tm_scope":"source.shell","ace_mode":"sh"},"TeX":{"type":"markup","color":"#3D6117","ace_mode":"tex","wrap":true,"aliases":["latex"],"extensions":[".tex",".aux",".bbx",".bib",".cbx",".cls",".dtx",".ins",".lbx",".ltx",".mkii",".mkiv",".mkvi",".sty",".toc"]},"Tea":{"type":"markup","extensions":[".tea"],"tm_scope":"source.tea","ace_mode":"text"},"Terra":{"type":"programming","extensions":[".t"],"color":"#00004c","ace_mode":"lua","group":"Lua","interpreters":["lua"]},"Text":{"type":"prose","wrap":true,"aliases":["fundamental"],"extensions":[".txt",".fr",".nb",".ncl",".no"],"filenames":["COPYING","INSTALL","LICENSE","NEWS","README.me","click.me","delete.me","keep.me","read.me","test.me"],"tm_scope":"none","ace_mode":"text"},"Textile":{"type":"prose","ace_mode":"textile","wrap":true,"extensions":[".textile"],"tm_scope":"none"},"Thrift":{"type":"programming","tm_scope":"source.thrift","extensions":[".thrift"],"ace_mode":"text"},"Turing":{"type":"programming","color":"#45f715","extensions":[".t",".tu"],"tm_scope":"none","ace_mode":"text"},"Turtle":{"type":"data","extensions":[".ttl"],"tm_scope":"source.turtle","ace_mode":"text"},"Twig":{"type":"markup","group":"HTML","extensions":[".twig"],"tm_scope":"text.html.twig","ace_mode":"twig"},"TypeScript":{"type":"programming","color":"#2b7489","aliases":["ts"],"extensions":[".ts",".tsx"],"tm_scope":"source.ts","ace_mode":"typescript"},"Unified Parallel C":{"type":"programming","group":"C","ace_mode":"c_cpp","color":"#4e3617","extensions":[".upc"],"tm_scope":"source.c"},"Unity3D Asset":{"type":"data","ace_mode":"yaml","extensions":[".anim",".asset",".mat",".meta",".prefab",".unity"],"tm_scope":"source.yaml"},"Uno":{"type":"programming","extensions":[".uno"],"ace_mode":"csharp","tm_scope":"source.cs"},"UnrealScript":{"type":"programming","color":"#a54c4d","extensions":[".uc"],"tm_scope":"source.java","ace_mode":"java"},"UrWeb":{"type":"programming","aliases":["Ur/Web","Ur"],"extensions":[".ur",".urs"],"tm_scope":"source.ur","ace_mode":"text"},"VCL":{"group":"Perl","type":"programming","extensions":[".vcl"],"tm_scope":"source.varnish.vcl","ace_mode":"text"},"VHDL":{"type":"programming","color":"#adb2cb","extensions":[".vhdl",".vhd",".vhf",".vhi",".vho",".vhs",".vht",".vhw"],"ace_mode":"vhdl"},"Vala":{"type":"programming","color":"#fbe5cd","extensions":[".vala",".vapi"],"ace_mode":"vala"},"Verilog":{"type":"programming","color":"#b2b7f8","extensions":[".v",".veo"],"ace_mode":"verilog"},"VimL":{"type":"programming","color":"#199f4b","search_term":"vim","aliases":["vim","nvim"],"extensions":[".vim"],"filenames":[".nvimrc",".vimrc","_vimrc","gvimrc","nvimrc","vimrc"],"ace_mode":"text"},"Visual Basic":{"type":"programming","color":"#945db7","extensions":[".vb",".bas",".cls",".frm",".frx",".vba",".vbhtml",".vbs"],"tm_scope":"source.vbnet","aliases":["vb.net","vbnet"],"ace_mode":"text"},"Volt":{"type":"programming","color":"#1F1F1F","extensions":[".volt"],"tm_scope":"source.d","ace_mode":"d"},"Vue":{"type":"markup","color":"#2c3e50","extensions":[".vue"],"tm_scope":"text.html.vue","ace_mode":"html"},"Web Ontology Language":{"type":"markup","color":"#9cc9dd","extensions":[".owl"],"tm_scope":"text.xml","ace_mode":"xml"},"WebIDL":{"type":"programming","extensions":[".webidl"],"tm_scope":"source.webidl","ace_mode":"text"},"X10":{"type":"programming","aliases":["xten"],"ace_mode":"text","extensions":[".x10"],"color":"#4B6BEF","tm_scope":"source.x10"},"XC":{"type":"programming","color":"#99DA07","extensions":[".xc"],"tm_scope":"source.xc","ace_mode":"c_cpp"},"XML":{"type":"data","ace_mode":"xml","aliases":["rss","xsd","wsdl"],"extensions":[".xml",".ant",".axml",".ccxml",".clixml",".cproject",".csl",".csproj",".ct",".dita",".ditamap",".ditaval",".dll.config",".dotsettings",".filters",".fsproj",".fxml",".glade",".gml",".grxml",".iml",".ivy",".jelly",".jsproj",".kml",".launch",".mdpolicy",".mm",".mod",".mxml",".nproj",".nuspec",".odd",".osm",".plist",".pluginspec",".props",".ps1xml",".psc1",".pt",".rdf",".rss",".scxml",".srdf",".storyboard",".stTheme",".sublime-snippet",".targets",".tmCommand",".tml",".tmLanguage",".tmPreferences",".tmSnippet",".tmTheme",".ts",".tsx",".ui",".urdf",".ux",".vbproj",".vcxproj",".vssettings",".vxml",".wsdl",".wsf",".wxi",".wxl",".wxs",".x3d",".xacro",".xaml",".xib",".xlf",".xliff",".xmi",".xml.dist",".xproj",".xsd",".xul",".zcml"],"filenames":[".classpath",".project","App.config","NuGet.config","Settings.StyleCop","Web.Debug.config","Web.Release.config","Web.config","packages.config"]},"XPages":{"type":"programming","extensions":[".xsp-config",".xsp.metadata"],"tm_scope":"none","ace_mode":"xml"},"XProc":{"type":"programming","extensions":[".xpl",".xproc"],"tm_scope":"text.xml","ace_mode":"xml"},"XQuery":{"type":"programming","color":"#5232e7","extensions":[".xquery",".xq",".xql",".xqm",".xqy"],"ace_mode":"xquery","tm_scope":"source.xq"},"XS":{"type":"programming","extensions":[".xs"],"tm_scope":"source.c","ace_mode":"c_cpp"},"XSLT":{"type":"programming","aliases":["xsl"],"extensions":[".xslt",".xsl"],"tm_scope":"text.xml.xsl","ace_mode":"xml","color":"#EB8CEB"},"Xojo":{"type":"programming","extensions":[".xojo_code",".xojo_menu",".xojo_report",".xojo_script",".xojo_toolbar",".xojo_window"],"tm_scope":"source.vbnet","ace_mode":"text"},"Xtend":{"type":"programming","extensions":[".xtend"],"ace_mode":"text"},"YAML":{"type":"data","tm_scope":"source.yaml","aliases":["yml"],"extensions":[".yml",".reek",".rviz",".sublime-syntax",".syntax",".yaml",".yaml-tmlanguage"],"filenames":[".clang-format"],"ace_mode":"yaml"},"YANG":{"type":"data","extensions":[".yang"],"tm_scope":"source.yang","ace_mode":"text"},"Yacc":{"type":"programming","extensions":[".y",".yacc",".yy"],"tm_scope":"source.bison","ace_mode":"text","color":"#4B6C4B"},"Zephir":{"type":"programming","color":"#118f9e","extensions":[".zep"],"tm_scope":"source.php.zephir","ace_mode":"php"},"Zimpl":{"type":"programming","extensions":[".zimpl",".zmpl",".zpl"],"tm_scope":"none","ace_mode":"text"},"desktop":{"type":"data","extensions":[".desktop",".desktop.in"],"tm_scope":"source.desktop","ace_mode":"text"},"eC":{"type":"programming","color":"#913960","search_term":"ec","extensions":[".ec",".eh"],"tm_scope":"source.c.ec","ace_mode":"text"},"edn":{"type":"data","ace_mode":"clojure","extensions":[".edn"],"tm_scope":"source.clojure"},"fish":{"type":"programming","group":"Shell","extensions":[".fish"],"tm_scope":"source.fish","ace_mode":"text"},"mupad":{"type":"programming","extensions":[".mu"],"ace_mode":"text"},"nesC":{"type":"programming","color":"#94B0C7","extensions":[".nc"],"ace_mode":"text","tm_scope":"source.nesc"},"ooc":{"type":"programming","color":"#b0b77e","extensions":[".ooc"],"ace_mode":"text"},"reStructuredText":{"type":"prose","wrap":true,"search_term":"rst","aliases":["rst"],"extensions":[".rst",".rest",".rest.txt",".rst.txt"],"ace_mode":"text","color":"#B3BCBC"},"wisp":{"type":"programming","ace_mode":"clojure","color":"#7582D1","extensions":[".wisp"],"tm_scope":"source.clojure"},"xBase":{"type":"programming","color":"#403a40","aliases":["advpl","clipper","foxpro"],"extensions":[".prg",".ch",".prw"],"tm_scope":"source.harbour","ace_mode":"text"}}
|
data/lib/linguist/languages.yml
CHANGED
@@ -230,7 +230,7 @@ Assembly:
|
|
230
230
|
- .a51
|
231
231
|
- .inc
|
232
232
|
- .nasm
|
233
|
-
tm_scope: source.
|
233
|
+
tm_scope: source.assembly
|
234
234
|
ace_mode: assembly_x86
|
235
235
|
|
236
236
|
Augeas:
|
@@ -260,7 +260,7 @@ AutoIt:
|
|
260
260
|
- AutoItScript
|
261
261
|
extensions:
|
262
262
|
- .au3
|
263
|
-
tm_scope:
|
263
|
+
tm_scope: none
|
264
264
|
ace_mode: autohotkey
|
265
265
|
|
266
266
|
Awk:
|
@@ -350,6 +350,7 @@ Boo:
|
|
350
350
|
extensions:
|
351
351
|
- .boo
|
352
352
|
ace_mode: text
|
353
|
+
tm_scope: source.boo
|
353
354
|
|
354
355
|
Brainfuck:
|
355
356
|
type: programming
|
@@ -445,7 +446,7 @@ CLIPS:
|
|
445
446
|
type: programming
|
446
447
|
extensions:
|
447
448
|
- .clp
|
448
|
-
tm_scope:
|
449
|
+
tm_scope: none
|
449
450
|
ace_mode: text
|
450
451
|
|
451
452
|
CMake:
|
@@ -690,7 +691,7 @@ Creole:
|
|
690
691
|
wrap: true
|
691
692
|
extensions:
|
692
693
|
- .creole
|
693
|
-
tm_scope:
|
694
|
+
tm_scope: none
|
694
695
|
ace_mode: text
|
695
696
|
|
696
697
|
Crystal:
|
@@ -1106,7 +1107,7 @@ GAS:
|
|
1106
1107
|
extensions:
|
1107
1108
|
- .s
|
1108
1109
|
- .ms
|
1109
|
-
tm_scope:
|
1110
|
+
tm_scope: none
|
1110
1111
|
ace_mode: assembly_x86
|
1111
1112
|
|
1112
1113
|
GDScript:
|
@@ -1531,6 +1532,7 @@ Idris:
|
|
1531
1532
|
- .idr
|
1532
1533
|
- .lidr
|
1533
1534
|
ace_mode: text
|
1535
|
+
tm_scope: none
|
1534
1536
|
|
1535
1537
|
Inform 7:
|
1536
1538
|
type: programming
|
@@ -1548,7 +1550,7 @@ Inno Setup:
|
|
1548
1550
|
type: programming
|
1549
1551
|
extensions:
|
1550
1552
|
- .iss
|
1551
|
-
tm_scope:
|
1553
|
+
tm_scope: none
|
1552
1554
|
ace_mode: text
|
1553
1555
|
|
1554
1556
|
Io:
|
@@ -1961,6 +1963,7 @@ Logos:
|
|
1961
1963
|
- .x
|
1962
1964
|
- .xi
|
1963
1965
|
ace_mode: text
|
1966
|
+
tm_scope: source.logos
|
1964
1967
|
|
1965
1968
|
Logtalk:
|
1966
1969
|
type: programming
|
@@ -2234,6 +2237,7 @@ Monkey:
|
|
2234
2237
|
extensions:
|
2235
2238
|
- .monkey
|
2236
2239
|
ace_mode: text
|
2240
|
+
tm_scope: source.monkey
|
2237
2241
|
|
2238
2242
|
Moocode:
|
2239
2243
|
type: programming
|
@@ -2369,7 +2373,7 @@ Nix:
|
|
2369
2373
|
- .nix
|
2370
2374
|
aliases:
|
2371
2375
|
- nixos
|
2372
|
-
tm_scope:
|
2376
|
+
tm_scope: none
|
2373
2377
|
ace_mode: nix
|
2374
2378
|
|
2375
2379
|
Nu:
|
@@ -2506,7 +2510,7 @@ OpenSCAD:
|
|
2506
2510
|
type: programming
|
2507
2511
|
extensions:
|
2508
2512
|
- .scad
|
2509
|
-
tm_scope:
|
2513
|
+
tm_scope: none
|
2510
2514
|
ace_mode: scad
|
2511
2515
|
|
2512
2516
|
Org:
|
@@ -2547,8 +2551,9 @@ PAWN:
|
|
2547
2551
|
color: "#dbb284"
|
2548
2552
|
extensions:
|
2549
2553
|
- .pwn
|
2550
|
-
|
2551
|
-
|
2554
|
+
- .inc
|
2555
|
+
tm_scope: source.pawn
|
2556
|
+
ace_mode: text
|
2552
2557
|
|
2553
2558
|
PHP:
|
2554
2559
|
type: programming
|
@@ -2577,7 +2582,7 @@ PHP:
|
|
2577
2582
|
PLSQL:
|
2578
2583
|
type: programming
|
2579
2584
|
ace_mode: sql
|
2580
|
-
tm_scope:
|
2585
|
+
tm_scope: none
|
2581
2586
|
color: "#dad8d8"
|
2582
2587
|
extensions:
|
2583
2588
|
- .pls
|
@@ -2619,7 +2624,7 @@ Papyrus:
|
|
2619
2624
|
color: "#6600cc"
|
2620
2625
|
extensions:
|
2621
2626
|
- .psc
|
2622
|
-
tm_scope: source.papyrus
|
2627
|
+
tm_scope: source.papyrus.skyrim
|
2623
2628
|
ace_mode: text
|
2624
2629
|
|
2625
2630
|
Parrot:
|
@@ -2841,6 +2846,7 @@ Puppet:
|
|
2841
2846
|
filenames:
|
2842
2847
|
- Modulefile
|
2843
2848
|
ace_mode: text
|
2849
|
+
tm_scope: source.puppet
|
2844
2850
|
|
2845
2851
|
Pure Data:
|
2846
2852
|
type: programming
|
@@ -3565,6 +3571,16 @@ Tea:
|
|
3565
3571
|
tm_scope: source.tea
|
3566
3572
|
ace_mode: text
|
3567
3573
|
|
3574
|
+
Terra:
|
3575
|
+
type: programming
|
3576
|
+
extensions:
|
3577
|
+
- .t
|
3578
|
+
color: "#00004c"
|
3579
|
+
ace_mode: lua
|
3580
|
+
group: Lua
|
3581
|
+
interpreters:
|
3582
|
+
- lua
|
3583
|
+
|
3568
3584
|
Text:
|
3569
3585
|
type: prose
|
3570
3586
|
wrap: true
|
@@ -3831,6 +3847,7 @@ XML:
|
|
3831
3847
|
- .ditamap
|
3832
3848
|
- .ditaval
|
3833
3849
|
- .dll.config
|
3850
|
+
- .dotsettings
|
3834
3851
|
- .filters
|
3835
3852
|
- .fsproj
|
3836
3853
|
- .fxml
|
@@ -3878,6 +3895,7 @@ XML:
|
|
3878
3895
|
- .ux
|
3879
3896
|
- .vbproj
|
3880
3897
|
- .vcxproj
|
3898
|
+
- .vssettings
|
3881
3899
|
- .vxml
|
3882
3900
|
- .wsdl
|
3883
3901
|
- .wsf
|
@@ -3899,6 +3917,8 @@ XML:
|
|
3899
3917
|
filenames:
|
3900
3918
|
- .classpath
|
3901
3919
|
- .project
|
3920
|
+
- App.config
|
3921
|
+
- NuGet.config
|
3902
3922
|
- Settings.StyleCop
|
3903
3923
|
- Web.Debug.config
|
3904
3924
|
- Web.Release.config
|
@@ -3982,6 +4002,8 @@ YAML:
|
|
3982
4002
|
- .syntax
|
3983
4003
|
- .yaml
|
3984
4004
|
- .yaml-tmlanguage
|
4005
|
+
filenames:
|
4006
|
+
- .clang-format
|
3985
4007
|
ace_mode: yaml
|
3986
4008
|
|
3987
4009
|
YANG:
|
@@ -4063,6 +4085,7 @@ nesC:
|
|
4063
4085
|
extensions:
|
4064
4086
|
- .nc
|
4065
4087
|
ace_mode: text
|
4088
|
+
tm_scope: source.nesc
|
4066
4089
|
|
4067
4090
|
ooc:
|
4068
4091
|
type: programming
|
data/lib/linguist/lazy_blob.rb
CHANGED
data/lib/linguist/repository.rb
CHANGED
data/lib/linguist/samples.json
CHANGED
@@ -732,6 +732,7 @@
|
|
732
732
|
".oz"
|
733
733
|
],
|
734
734
|
"PAWN": [
|
735
|
+
".inc",
|
735
736
|
".pwn"
|
736
737
|
],
|
737
738
|
"PHP": [
|
@@ -1059,6 +1060,9 @@
|
|
1059
1060
|
"Tea": [
|
1060
1061
|
".tea"
|
1061
1062
|
],
|
1063
|
+
"Terra": [
|
1064
|
+
".t"
|
1065
|
+
],
|
1062
1066
|
"Text": [
|
1063
1067
|
".fr",
|
1064
1068
|
".nb",
|
@@ -1438,11 +1442,12 @@
|
|
1438
1442
|
".cproject"
|
1439
1443
|
],
|
1440
1444
|
"YAML": [
|
1445
|
+
".clang-format",
|
1441
1446
|
".gemrc"
|
1442
1447
|
]
|
1443
1448
|
},
|
1444
|
-
"tokens_total":
|
1445
|
-
"languages_total":
|
1449
|
+
"tokens_total": 1126010,
|
1450
|
+
"languages_total": 1549,
|
1446
1451
|
"tokens": {
|
1447
1452
|
"ABAP": {
|
1448
1453
|
"*/**": 1,
|
@@ -79309,158 +79314,423 @@
|
|
79309
79314
|
"@RevList": 2
|
79310
79315
|
},
|
79311
79316
|
"PAWN": {
|
79312
|
-
"
|
79313
|
-
"
|
79314
|
-
"
|
79317
|
+
"#if": 147,
|
79318
|
+
"defined": 113,
|
79319
|
+
"_INC_SAMP_Community_fixes": 2,
|
79320
|
+
"#endinput": 1,
|
79321
|
+
"#endif": 145,
|
79322
|
+
"#define": 252,
|
79323
|
+
"_inc_fixes": 2,
|
79324
|
+
"_FIXES_IS_UNSET": 94,
|
79325
|
+
"(": 515,
|
79326
|
+
"%": 50,
|
79327
|
+
")": 514,
|
79328
|
+
"*": 2,
|
79329
|
+
"-": 16,
|
79330
|
+
"+": 14,
|
79331
|
+
"FIX_GetPlayerColour": 8,
|
79332
|
+
"FIX_GetPlayerColor": 3,
|
79333
|
+
"#else": 22,
|
79334
|
+
"#elseif": 93,
|
79335
|
+
"#undef": 93,
|
79336
|
+
"FIX_FILTERSCRIPT": 7,
|
79337
|
+
"FIX_SpawnPlayer": 5,
|
79338
|
+
"FIX_SetPlayerName": 5,
|
79339
|
+
"FIX_GetPlayerSkin": 5,
|
79340
|
+
"FIX_GetWeaponName": 5,
|
79341
|
+
"FIX_SetPlayerWorldBounds": 7,
|
79342
|
+
"FIX_TogglePlayerControllable": 7,
|
79343
|
+
"SetObjectMaterial": 1,
|
79344
|
+
"FIX_HydraSniper": 5,
|
79345
|
+
"FIX_IsPlayerInCheckpoint": 5,
|
79346
|
+
"FIX_IsPlayerInRaceCheckpoint": 5,
|
79347
|
+
"FIX_GetPlayerWeapon": 5,
|
79348
|
+
"FIX_PutPlayerInVehicle": 5,
|
79349
|
+
"FIX_KEY_AIM": 7,
|
79350
|
+
"KEY_AIM": 2,
|
79351
|
+
"FIX_SPECIAL_ACTION_PISSING": 7,
|
79352
|
+
"SPECIAL_ACTION_PISSING": 2,
|
79353
|
+
"FIX_Natives": 8,
|
79354
|
+
"FIX_IsValidVehicle": 7,
|
79355
|
+
"IsValidVehicle": 2,
|
79356
|
+
"FIX_GetGravity": 7,
|
79357
|
+
"GetGravity": 2,
|
79358
|
+
"FIX_gpci": 7,
|
79359
|
+
"gpci": 2,
|
79360
|
+
"FIX_BODYPARTS": 7,
|
79361
|
+
"BODY_PART_TORSO": 2,
|
79362
|
+
"FIX_CAMERAMODES": 7,
|
79363
|
+
"CAM_MODE_NONE": 2,
|
79364
|
+
"FIX_DriveBy": 5,
|
79365
|
+
"FIX_SetPlayerCheckpoint": 5,
|
79366
|
+
"FIX_SetPlayerRaceCheckpoint": 5,
|
79367
|
+
"FIX_TextDrawCreate": 5,
|
79368
|
+
"FIX_TextDrawSetString": 5,
|
79369
|
+
"FIX_AllowInteriorWeapons": 6,
|
79370
|
+
"FIX_OnPlayerEnterVehicle": 8,
|
79371
|
+
"OnPlayerClickMap": 2,
|
79372
|
+
"FIX_OnPlayerEnterVehicle_2": 4,
|
79373
|
+
"FIX_AllowTeleport": 6,
|
79374
|
+
"FIX_SetPlayerSpecialAction": 5,
|
79375
|
+
"FIX_ClearAnimations": 5,
|
79376
|
+
"FIX_ClearAnimations_2": 5,
|
79377
|
+
"FIX_GangZoneCreate": 5,
|
79378
|
+
"FIX_OnDialogResponse": 6,
|
79379
|
+
"GetVehicleModelInfo": 1,
|
79380
|
+
"FIX_GetPlayerDialog": 5,
|
79381
|
+
"FIX_PlayerDialogResponse": 5,
|
79382
|
+
"FIX_SetSpawnInfo": 6,
|
79383
|
+
"GetPlayerVersion": 1,
|
79384
|
+
"FIX_SetPlayerSkin": 5,
|
79385
|
+
"FIX_HideMenuForPlayer": 11,
|
79386
|
+
"FIX_valstr": 5,
|
79387
|
+
"FIX_file_inc": 14,
|
79388
|
+
"FIX_fclose": 5,
|
79389
|
+
"FIX_fwrite": 5,
|
79390
|
+
"FIX_fread": 5,
|
79391
|
+
"FIX_fputchar": 5,
|
79392
|
+
"FIX_fgetchar": 5,
|
79393
|
+
"FIX_fblockwrite": 5,
|
79394
|
+
"FIX_fblockread": 5,
|
79395
|
+
"FIX_fseek": 5,
|
79396
|
+
"FIX_flength": 5,
|
79397
|
+
"FIX_IsPlayerAttachedObjSlotUsed": 5,
|
79398
|
+
"FIX_SetPlayerAttachedObject": 5,
|
79399
|
+
"FIX_OnPlayerDeath": 5,
|
79400
|
+
"FIX_strins": 5,
|
79401
|
+
"FIX_IsPlayerConnected": 6,
|
79402
|
+
"FIX_OnPlayerCommandText": 5,
|
79403
|
+
"FIX_TrainExit": 5,
|
79404
|
+
"FIX_Kick": 6,
|
79405
|
+
"EnableVehicleFriendlyFire": 1,
|
79406
|
+
"FIX_OnVehicleMod": 6,
|
79407
|
+
"FIX_random": 5,
|
79408
|
+
"FIX_sleep": 5,
|
79409
|
+
"FIX_Menus": 12,
|
79410
|
+
"FIX_AddMenuItem": 6,
|
79411
|
+
"FIX_SetMenuColumnHeader": 6,
|
79412
|
+
"FIX_ShowMenuForPlayer": 6,
|
79413
|
+
"FIX_GetPlayerMenu": 8,
|
79414
|
+
"FIX_HideMenuForPlayer_2": 7,
|
79415
|
+
"&&": 3,
|
79416
|
+
"#error": 3,
|
79417
|
+
"requires": 2,
|
79418
|
+
"FIX_DisableMenu": 6,
|
79419
|
+
"FIX_DisableMenuRow": 6,
|
79420
|
+
"||": 14,
|
79421
|
+
"_FIX_Menus": 3,
|
79422
|
+
"FIX_GetPlayerInterior": 5,
|
79423
|
+
"FIX_ApplyAnimation": 7,
|
79424
|
+
"FIX_ApplyAnimation_2": 9,
|
79425
|
+
"FIX_OnPlayerSpawn": 5,
|
79426
|
+
"FIX_GameText": 14,
|
79427
|
+
"FIX_HideGameText": 5,
|
79428
|
+
"FIX_GameTextStyles": 9,
|
79429
|
+
"FIX_OnPlayerConnect": 5,
|
79430
|
+
"FIX_OnPlayerDisconnect": 6,
|
79431
|
+
"FIX_CreatePlayerTextDraw": 5,
|
79432
|
+
"FIX_PlayerTextDrawSetString": 5,
|
79433
|
+
"FIX_SetPlayerCamera": 5,
|
79434
|
+
"FIX_SetPlayerTime": 5,
|
79435
|
+
"FIX_OnPlayerRequestClass": 5,
|
79436
|
+
"FIX_SetPlayerColour": 7,
|
79437
|
+
"FIX_SetPlayerColor": 3,
|
79438
|
+
"FIX_FileMaths": 6,
|
79439
|
+
"FIX_GetPlayerWeaponData": 5,
|
79440
|
+
"CHAIN_ORDER": 5,
|
79441
|
+
"PRE_HOOK": 2,
|
79442
|
+
"forward": 32,
|
79443
|
+
"@CO_": 2,
|
79444
|
+
";": 72,
|
79445
|
+
"public": 5,
|
79446
|
+
"{": 23,
|
79447
|
+
"return": 6,
|
79448
|
+
"}": 23,
|
79449
|
+
"FIXES": 1,
|
79450
|
+
"@CO_FIXES": 1,
|
79451
|
+
"static": 7,
|
79452
|
+
"stock": 7,
|
79453
|
+
"_FIXES_IncludeStates": 2,
|
79454
|
+
"<_ALS>": 3,
|
79455
|
+
"_ALS_x0": 2,
|
79456
|
+
"_ALS": 4,
|
79457
|
+
"_ALS_x1": 2,
|
79458
|
+
"_ALS_x2": 1,
|
79459
|
+
"_ALS_x3": 1,
|
79460
|
+
"_ALS_go": 1,
|
79461
|
+
"FIXES_GT_STYLE_COUNT": 6,
|
79462
|
+
"FIXES_SilentKick": 5,
|
79463
|
+
"FIXES_Debug": 7,
|
79464
|
+
"FIXES_PRINTF": 3,
|
79465
|
+
"print": 6,
|
79466
|
+
"_FIXES_gIsFilterscript": 3,
|
79467
|
+
"printf": 1,
|
79468
|
+
"FIXES_UseStateHooks": 1,
|
79469
|
+
"INVALID_DIALOG_ID": 2,
|
79470
|
+
"FIXES_Single": 7,
|
79471
|
+
"_FIXES_IS_IN_CHARGE": 2,
|
79472
|
+
"if": 3,
|
79473
|
+
"FIXES_gsSettings": 2,
|
79474
|
+
"&": 1,
|
79475
|
+
"e_FIXES_SETTINGS_IN_CHARGE": 2,
|
79476
|
+
"enum": 3,
|
79477
|
+
"E_FIXES_WORLDBOUND_DATA": 2,
|
79478
|
+
"//": 14,
|
79479
|
+
".": 10,
|
79480
|
+
"Float": 10,
|
79481
|
+
"E_FIXES_WORLDBOUND_DATA_PX": 1,
|
79482
|
+
"E_FIXES_WORLDBOUND_DATA_PY": 1,
|
79483
|
+
"E_FIXES_WORLDBOUND_DATA_PZ": 1,
|
79484
|
+
"E_FIXES_WORLDBOUND_DATA_LX": 1,
|
79485
|
+
"E_FIXES_WORLDBOUND_DATA_LY": 1,
|
79486
|
+
"E_FIXES_WORLDBOUND_DATA_UX": 1,
|
79487
|
+
"E_FIXES_WORLDBOUND_DATA_UY": 1,
|
79488
|
+
"e_FIXES_BOOLS": 2,
|
79489
|
+
"<<": 2,
|
79490
|
+
"Handy": 2,
|
79491
|
+
"definition": 2,
|
79492
|
+
"for": 3,
|
79493
|
+
"nothing": 2,
|
79494
|
+
"set.": 2,
|
79495
|
+
"e_FIXES_BOOLS_NONE": 1,
|
79496
|
+
"Does": 1,
|
79497
|
+
"this": 1,
|
79498
|
+
"player": 1,
|
79499
|
+
"have": 1,
|
79500
|
+
"worldbounds": 1,
|
79501
|
+
"enabled": 1,
|
79502
|
+
"e_FIXES_BOOLS_WORLDBOUNDS": 1,
|
79503
|
+
"e_FIXES_BOOLS_UNCONTROLLABLE": 1,
|
79504
|
+
"e_FIXES_BOOLS_PUT_IN_VEHICLE": 1,
|
79505
|
+
"e_FIXES_BOOLS_BLOCK": 1,
|
79506
|
+
"e_FIXES_BOOLS_TELEPORT": 1,
|
79507
|
+
"e_FIXES_BOOLS_CONNECTED": 1,
|
79508
|
+
"e_FIXES_BOOLS_INTERIOR": 1,
|
79509
|
+
"e_FIXES_BOOLS_PUT_IN_TRAIN": 1,
|
79510
|
+
"e_FIXES_BOOLS_KICKED": 1,
|
79511
|
+
"e_FIXES_BOOLS_ON_PLAYER_CONNECT": 1,
|
79512
|
+
"e_FIXES_BOOLS_DRIVE_BY": 1,
|
79513
|
+
"e_FIXES_BOOLS_FIRST_SPAWN": 1,
|
79514
|
+
"e_FIXES_BOOLS_FIRST_CLASS": 1,
|
79515
|
+
"e_FIXES_BOOLS_SPECTATING": 1,
|
79516
|
+
"e_FIXES_BOOLS_CP_DELAYED": 1,
|
79517
|
+
"e_FIXES_BOOLS_RACE_CP_DELAYED": 1,
|
79518
|
+
"e_FIXES_SETTINGS": 2,
|
79519
|
+
"e_FIXES_SETTINGS_NONE": 1,
|
79520
|
+
"e_FIXES_SETTINGS_INTERIOR": 1,
|
79521
|
+
"e_FIXES_SETTINGS_ADMIN_TELEPORT": 1,
|
79522
|
+
"e_FIXES_SETTINGS_DROP_ALL_DATA": 1,
|
79523
|
+
"e_FIXES_SETTINGS_MENU_SET": 1,
|
79524
|
+
"e_FIXES_SETTINGS_ENDING": 1,
|
79525
|
+
"e_FIXES_SETTINGS_ENDED": 1,
|
79526
|
+
"e_FIXES_SETTINGS_NO_GAME_TEXT": 1,
|
79527
|
+
"e_FIXES_SETTINGS_SECOND_USE": 2,
|
79528
|
+
"_FIXES_CEILDIV": 5,
|
79529
|
+
"/": 2,
|
79530
|
+
"_FIXES_INFINITY": 1,
|
79531
|
+
"_FIXES_N_INFINITY": 1,
|
79532
|
+
"_FIXES_ATTACHMENTS": 2,
|
79533
|
+
"cellbits": 4,
|
79534
|
+
"MAX_PLAYER_ATTACHED_OBJECTS": 1,
|
79535
|
+
"_FIXES_FOREACH": 1,
|
79536
|
+
"new": 5,
|
79537
|
+
"MAX_PLAYERS": 24,
|
79538
|
+
"[": 97,
|
79539
|
+
"]": 97,
|
79540
|
+
"_FIXES_IN_RANGE": 2,
|
79541
|
+
"cellmin": 4,
|
79542
|
+
"<": 7,
|
79543
|
+
"_FIXES_NO_RANGE": 1,
|
79544
|
+
"_FIXES_FORWARD": 1,
|
79545
|
+
"_FIXES_IS_PLAYER_CONNECTED": 2,
|
79546
|
+
"IsPlayerConnected": 3,
|
79547
|
+
"bool": 13,
|
79548
|
+
"FIXES_gscSpace": 6,
|
79549
|
+
"FIXES_gsPlayersIterator": 1,
|
79550
|
+
"...": 4,
|
79551
|
+
"FIXES_gsValidMenus": 1,
|
79552
|
+
"MAX_MENUS": 1,
|
79553
|
+
"FIXES_gsPlayerIP": 1,
|
79554
|
+
"FIXES_gsPlayerSkin": 1,
|
79555
|
+
"FIXES_gsPlayerBools": 1,
|
79556
|
+
"FIXES_gsWorldbounds": 1,
|
79557
|
+
"FIXES_gsPlayerWeapon": 1,
|
79558
|
+
"FIXES_gsVehicleSeatData": 1,
|
79559
|
+
"//FIXES_gsVehicleLocked": 1,
|
79560
|
+
"MAX_VEHICLES": 1,
|
79561
|
+
"FIXES_gsDialogID": 1,
|
79562
|
+
"FIXES_gsInterior": 1,
|
79563
|
+
"FIXES_gsObjectSlots": 1,
|
79564
|
+
"FIXES_gsLastAnimation": 1,
|
79565
|
+
"FIXES_gsLastCash": 1,
|
79566
|
+
"FIXES_gsDriveByWeapon": 1,
|
79567
|
+
"Menu": 2,
|
79568
|
+
"FIXES_gsCurrentMenu": 1,
|
79569
|
+
"INVALID_MENU": 1,
|
79570
|
+
"Text": 2,
|
79571
|
+
"FIXES_gsGTStyle": 7,
|
79572
|
+
"FIXES_gsPlayerPGTShown": 1,
|
79573
|
+
"PlayerText": 1,
|
79574
|
+
"FIXES_gsPGTStyle": 1,
|
79575
|
+
"FIXES_gsGTTimer": 1,
|
79576
|
+
"FIXES_gsAnimTimer": 1,
|
79577
|
+
"FIXES_gsClassAnimName": 1,
|
79578
|
+
"FIXES_gsPlayerAnimLibs": 1,
|
79579
|
+
"FIXES_pvarNotNewPlayer": 1,
|
79580
|
+
"FIXES_pvarPlayerWeapon": 1,
|
79581
|
+
"FIXES_pvarPlayerSkin": 1,
|
79582
|
+
"FIXES_pvarPlayerSpectate": 1,
|
79583
|
+
"FIXES_gscKick": 1,
|
79584
|
+
"FIXES_pvarKick": 1,
|
79585
|
+
"FIXES_pvarPlayerDialog": 1,
|
79586
|
+
"FIXES_pvarPlayerInterior": 1,
|
79587
|
+
"FIXES_pvarCurrentDialog": 1,
|
79588
|
+
"FIXES_pvarPlayerLastCash": 1,
|
79589
|
+
"FIXES_gscHideGameTextTimer": 1,
|
79590
|
+
"FIXES_gscDriveBy": 1,
|
79591
|
+
"FIXES_gscSetCamera": 1,
|
79592
|
+
"FIXES_gscSetTime": 1,
|
79593
|
+
"FIXES_gscSetColor": 1,
|
79594
|
+
"FIXES_gscSetCheckpoint": 1,
|
79595
|
+
"FIXES_pvarPlayerCheckpoint": 1,
|
79596
|
+
"FIXES_gscSetRaceCheckpoint": 1,
|
79597
|
+
"FIXES_pvarPlayerRaceCheckpoint": 1,
|
79598
|
+
"FIXES_gscNULL": 1,
|
79599
|
+
"const": 2,
|
79600
|
+
"FIXES_gscPlayerColours": 1,
|
79601
|
+
"FIXES_gscMaxPassengers": 1,
|
79602
|
+
"FIXES_gscVehicleMods": 1,
|
79603
|
+
"FIXES_gscAnimIndexes": 1,
|
79604
|
+
"FIXES_gscAnimLib": 1,
|
79605
|
+
"FIXES_gscDot": 1,
|
79606
|
+
"FIXES_gscSpec@": 3,
|
79607
|
+
"FIXES_gscSpec@i": 1,
|
79608
|
+
"FIXES_gscSpec@ii": 1,
|
79609
|
+
"FIXES_gscSpec@ai": 1,
|
79610
|
+
"FIXES_gscSpec@is": 1,
|
79611
|
+
"FIXES_gscSpec@iii": 1,
|
79612
|
+
"FIXES_gscSpec@isii": 1,
|
79613
|
+
"FIXES_gscSpec@ifff": 1,
|
79614
|
+
"FIXES_gscSpec@iifff": 1,
|
79615
|
+
"FIXES_gscSpec@iifffffff": 1,
|
79616
|
+
"FIXES_gscSpec@iffff": 1,
|
79617
|
+
"FIXES_gscSpec@iiiis": 1,
|
79618
|
+
"FIXES_gscSpec@iiiii": 1,
|
79619
|
+
"FIXES_gscSpec@iiiiii": 1,
|
79620
|
+
"FIXES_gscTempName": 1,
|
79621
|
+
"FIXES_gscOrderProperty": 2,
|
79622
|
+
"FIXES_gscNoGMProperty": 3,
|
79623
|
+
"FIXES_gscDetermineOrder": 3,
|
79624
|
+
"FIXES_gscSetPlayerMenu": 1,
|
79625
|
+
"FIXES_gscClearPlayerMenu": 1,
|
79626
|
+
"FIXES_gscAllowTeleport": 1,
|
79627
|
+
"FIXES_gscPutPlayerInVehicle": 1,
|
79628
|
+
"FIXES_gscAllowInteriorWeapons": 1,
|
79629
|
+
"FIXES_gscSetPlayerAttachedObj": 1,
|
79630
|
+
"FIXES_gscTogglePlayerControl": 1,
|
79631
|
+
"FIXES_gscSetPlayerWorldBounds": 1,
|
79632
|
+
"FIXES_gscGameTextShow": 1,
|
79633
|
+
"FIXES_gscReturnProperty": 1,
|
79634
|
+
"FIXES_gscSingleProperty": 1,
|
79635
|
+
"FIXES_gscMenuProperty": 1,
|
79636
|
+
"FIXES_gscFixesError": 1,
|
79637
|
+
"_FIXES_KEY_AIM": 2,
|
79638
|
+
"_FIXES_SPECIAL_ACTION_PISSING": 2,
|
79639
|
+
"native": 4,
|
79640
|
+
"vehicleid": 1,
|
79641
|
+
"playerid": 6,
|
79642
|
+
"serial": 1,
|
79643
|
+
"maxlen": 1,
|
79644
|
+
"BODY_PART_GROIN": 1,
|
79645
|
+
"BODY_PART_LEFT_ARM": 1,
|
79646
|
+
"BODY_PART_RIGHT_ARM": 1,
|
79647
|
+
"BODY_PART_LEFT_LEG": 1,
|
79648
|
+
"BODY_PART_RIGHT_LEG": 1,
|
79649
|
+
"BODY_PART_HEAD": 1,
|
79650
|
+
"CAM_MODE_DISCONNECTED": 1,
|
79651
|
+
"CAM_MODE_BEHINDCAR": 1,
|
79652
|
+
"CAM_MODE_FOLLOWPED": 1,
|
79653
|
+
"CAM_MODE_SNIPER": 1,
|
79654
|
+
"CAM_MODE_ROCKETLAUNCHER": 1,
|
79655
|
+
"CAM_MODE_FIXED": 1,
|
79656
|
+
"CAM_MODE_1STPERSON": 1,
|
79657
|
+
"CAM_MODE_CAM_ON_A_STRING": 1,
|
79658
|
+
"CAM_MODE_BEHINDBOAT": 1,
|
79659
|
+
"CAM_MODE_CAMERA": 1,
|
79660
|
+
"CAM_MODE_ROCKETLAUNCHER_HS": 1,
|
79661
|
+
"CAM_MODE_AIMWEAPON": 1,
|
79662
|
+
"CAM_MODE_AIMWEAPON_FROMCAR": 1,
|
79663
|
+
"CAM_MODE_DW_HELI_CHASE": 1,
|
79664
|
+
"IS_FILTERSCRIPT": 1,
|
79665
|
+
"File": 52,
|
79666
|
+
"operator": 23,
|
79667
|
+
"a": 27,
|
79668
|
+
"b": 25,
|
79669
|
+
"_": 16,
|
79670
|
+
"operator*": 2,
|
79671
|
+
"operator/": 3,
|
79672
|
+
"<=(File:a,>": 1,
|
79673
|
+
"_FIXES_DetermineOrder": 1,
|
79674
|
+
"FIXES_DetermineOrder": 1,
|
79675
|
+
"deleteproperty": 2,
|
79676
|
+
"Called": 1,
|
79677
|
+
"in": 1,
|
79678
|
+
"the": 1,
|
79679
|
+
"Game": 1,
|
79680
|
+
"Mode": 1,
|
79681
|
+
"first": 1,
|
79682
|
+
"thus": 1,
|
79683
|
+
"needs": 1,
|
79684
|
+
"correcting": 1,
|
79685
|
+
"setproperty": 1,
|
79686
|
+
"CallRemoteFunction": 2,
|
79687
|
+
"_ALS_IsPlayerConnected": 3,
|
79688
|
+
"BAD_IsPlayerConnected": 1,
|
79689
|
+
"FIXES_IsPlayerConnected": 2,
|
79690
|
+
"_FIXES_CreateGameTextDraws": 1,
|
79691
|
+
"INVALID_PLAYER_ID": 1,
|
79692
|
+
"t": 62,
|
79693
|
+
"Global": 6,
|
79694
|
+
"style": 6,
|
79695
|
+
"vehicle": 1,
|
79696
|
+
"name": 3,
|
79697
|
+
"TextDrawCreate": 6,
|
79698
|
+
"TextDrawLetterSize": 5,
|
79699
|
+
"TextDrawAlignment": 5,
|
79700
|
+
"TextDrawColor": 5,
|
79701
|
+
"TextDrawSetShadow": 5,
|
79702
|
+
"TextDrawSetOutline": 5,
|
79703
|
+
"TextDrawBackgroundColor": 5,
|
79704
|
+
"TextDrawFont": 5,
|
79705
|
+
"TextDrawSetProportional": 5,
|
79706
|
+
"TextDrawUseBox": 5,
|
79707
|
+
"true": 5,
|
79708
|
+
"TextDrawBoxColor": 5,
|
79709
|
+
"TextDrawTextSize": 5,
|
79710
|
+
"location": 1,
|
79711
|
+
"radio": 2,
|
79712
|
+
"switch": 1,
|
79713
|
+
"positive": 1,
|
79714
|
+
"money": 2,
|
79715
|
+
"negative": 1,
|
79716
|
+
"#include": 1,
|
79315
79717
|
"<a_samp>": 1,
|
79316
|
-
"
|
79317
|
-
"
|
79318
|
-
"#pragma": 1,
|
79319
|
-
"tabsize": 1,
|
79320
|
-
"#define": 5,
|
79321
|
-
"COLOR_WHITE": 2,
|
79322
|
-
"COLOR_NORMAL_PLAYER": 3,
|
79323
|
-
"CITY_LOS_SANTOS": 7,
|
79324
|
-
"CITY_SAN_FIERRO": 4,
|
79325
|
-
"CITY_LAS_VENTURAS": 6,
|
79326
|
-
"new": 13,
|
79327
|
-
"total_vehicles_from_files": 19,
|
79328
|
-
";": 256,
|
79329
|
-
"gPlayerCitySelection": 21,
|
79330
|
-
"[": 56,
|
79331
|
-
"MAX_PLAYERS": 3,
|
79332
|
-
"]": 56,
|
79333
|
-
"gPlayerHasCitySelected": 6,
|
79334
|
-
"gPlayerLastCitySelectionTick": 5,
|
79335
|
-
"Text": 5,
|
79336
|
-
"txtClassSelHelper": 14,
|
79337
|
-
"txtLosSantos": 7,
|
79338
|
-
"txtSanFierro": 7,
|
79339
|
-
"txtLasVenturas": 7,
|
79340
|
-
"thisanimid": 1,
|
79341
|
-
"lastanimid": 1,
|
79718
|
+
"OneSecTimer": 2,
|
79719
|
+
"lasttick": 5,
|
79342
79720
|
"main": 1,
|
79343
|
-
"(": 273,
|
79344
|
-
")": 272,
|
79345
|
-
"{": 39,
|
79346
|
-
"print": 3,
|
79347
|
-
"}": 39,
|
79348
|
-
"public": 6,
|
79349
|
-
"OnPlayerConnect": 1,
|
79350
|
-
"playerid": 132,
|
79351
|
-
"GameTextForPlayer": 1,
|
79352
|
-
"SendClientMessage": 1,
|
79353
|
-
"GetTickCount": 4,
|
79354
|
-
"//SetPlayerColor": 2,
|
79355
|
-
"//Kick": 1,
|
79356
|
-
"return": 17,
|
79357
|
-
"OnPlayerSpawn": 1,
|
79358
|
-
"if": 28,
|
79359
|
-
"IsPlayerNPC": 3,
|
79360
|
-
"randSpawn": 16,
|
79361
|
-
"SetPlayerInterior": 7,
|
79362
|
-
"TogglePlayerClock": 2,
|
79363
|
-
"ResetPlayerMoney": 3,
|
79364
|
-
"GivePlayerMoney": 2,
|
79365
|
-
"random": 3,
|
79366
|
-
"sizeof": 3,
|
79367
|
-
"gRandomSpawns_LosSantos": 5,
|
79368
|
-
"SetPlayerPos": 6,
|
79369
|
-
"SetPlayerFacingAngle": 6,
|
79370
|
-
"else": 9,
|
79371
|
-
"gRandomSpawns_SanFierro": 5,
|
79372
|
-
"gRandomSpawns_LasVenturas": 5,
|
79373
|
-
"SetPlayerSkillLevel": 11,
|
79374
|
-
"WEAPONSKILL_PISTOL": 1,
|
79375
|
-
"WEAPONSKILL_PISTOL_SILENCED": 1,
|
79376
|
-
"WEAPONSKILL_DESERT_EAGLE": 1,
|
79377
|
-
"WEAPONSKILL_SHOTGUN": 1,
|
79378
|
-
"WEAPONSKILL_SAWNOFF_SHOTGUN": 1,
|
79379
|
-
"WEAPONSKILL_SPAS12_SHOTGUN": 1,
|
79380
|
-
"WEAPONSKILL_MICRO_UZI": 1,
|
79381
|
-
"WEAPONSKILL_MP5": 1,
|
79382
|
-
"WEAPONSKILL_AK47": 1,
|
79383
|
-
"WEAPONSKILL_M4": 1,
|
79384
|
-
"WEAPONSKILL_SNIPERRIFLE": 1,
|
79385
|
-
"GivePlayerWeapon": 1,
|
79386
|
-
"WEAPON_COLT45": 1,
|
79387
|
-
"//GivePlayerWeapon": 1,
|
79388
|
-
"WEAPON_MP5": 1,
|
79389
|
-
"OnPlayerDeath": 1,
|
79390
|
-
"killerid": 3,
|
79391
|
-
"reason": 1,
|
79392
|
-
"playercash": 4,
|
79393
|
-
"INVALID_PLAYER_ID": 1,
|
79394
|
-
"GetPlayerMoney": 1,
|
79395
|
-
"ClassSel_SetupCharSelection": 2,
|
79396
|
-
"SetPlayerCameraPos": 6,
|
79397
|
-
"SetPlayerCameraLookAt": 6,
|
79398
|
-
"ClassSel_InitCityNameText": 4,
|
79399
|
-
"txtInit": 7,
|
79400
|
-
"TextDrawUseBox": 2,
|
79401
|
-
"TextDrawLetterSize": 2,
|
79402
|
-
"TextDrawFont": 2,
|
79403
|
-
"TextDrawSetShadow": 2,
|
79404
|
-
"TextDrawSetOutline": 2,
|
79405
|
-
"TextDrawColor": 2,
|
79406
|
-
"TextDrawBackgroundColor": 2,
|
79407
|
-
"ClassSel_InitTextDraws": 2,
|
79408
|
-
"TextDrawCreate": 4,
|
79409
|
-
"TextDrawBoxColor": 1,
|
79410
|
-
"TextDrawTextSize": 1,
|
79411
|
-
"ClassSel_SetupSelectedCity": 3,
|
79412
|
-
"TextDrawShowForPlayer": 4,
|
79413
|
-
"TextDrawHideForPlayer": 10,
|
79414
|
-
"ClassSel_SwitchToNextCity": 3,
|
79415
|
-
"+": 19,
|
79416
|
-
"PlayerPlaySound": 2,
|
79417
|
-
"ClassSel_SwitchToPreviousCity": 2,
|
79418
|
-
"<": 3,
|
79419
|
-
"ClassSel_HandleCitySelection": 2,
|
79420
|
-
"Keys": 3,
|
79421
|
-
"ud": 2,
|
79422
|
-
"lr": 4,
|
79423
|
-
"GetPlayerKeys": 1,
|
79424
|
-
"&": 1,
|
79425
|
-
"KEY_FIRE": 1,
|
79426
|
-
"TogglePlayerSpectating": 2,
|
79427
|
-
"OnPlayerRequestClass": 1,
|
79428
|
-
"classid": 1,
|
79429
|
-
"GetPlayerState": 2,
|
79430
|
-
"PLAYER_STATE_SPECTATING": 2,
|
79431
79721
|
"OnGameModeInit": 1,
|
79722
|
+
"Set": 1,
|
79723
|
+
"timer": 1,
|
79724
|
+
"of": 1,
|
79725
|
+
"second.": 1,
|
79726
|
+
"SetTimer": 1,
|
79432
79727
|
"SetGameModeText": 1,
|
79433
|
-
"
|
79434
|
-
"
|
79435
|
-
"
|
79436
|
-
"
|
79437
|
-
"
|
79438
|
-
"
|
79439
|
-
"SetWeather": 1,
|
79440
|
-
"SetWorldTime": 1,
|
79441
|
-
"//UsePlayerPedAnims": 1,
|
79442
|
-
"//ManualVehicleEngineAndLights": 1,
|
79443
|
-
"//LimitGlobalChatRadius": 1,
|
79444
|
-
"AddPlayerClass": 69,
|
79445
|
-
"//AddPlayerClass": 1,
|
79446
|
-
"LoadStaticVehiclesFromFile": 17,
|
79447
|
-
"printf": 1,
|
79448
|
-
"OnPlayerUpdate": 1,
|
79449
|
-
"IsPlayerConnected": 1,
|
79450
|
-
"&&": 2,
|
79451
|
-
"GetPlayerInterior": 1,
|
79452
|
-
"GetPlayerWeapon": 2,
|
79453
|
-
"SetPlayerArmedWeapon": 1,
|
79454
|
-
"fists": 1,
|
79455
|
-
"no": 1,
|
79456
|
-
"syncing": 1,
|
79457
|
-
"until": 1,
|
79458
|
-
"they": 1,
|
79459
|
-
"change": 1,
|
79460
|
-
"their": 1,
|
79461
|
-
"weapon": 1,
|
79462
|
-
"WEAPON_MINIGUN": 1,
|
79463
|
-
"Kick": 1
|
79728
|
+
"AddPlayerClass": 1,
|
79729
|
+
"GetTickCount": 3,
|
79730
|
+
"sText": 5,
|
79731
|
+
"format": 1,
|
79732
|
+
"sizeof": 1,
|
79733
|
+
"SendClientMessageToAll": 1
|
79464
79734
|
},
|
79465
79735
|
"PHP": {
|
79466
79736
|
"<": 12,
|
@@ -111730,6 +112000,197 @@
|
|
111730
112000
|
"template": 1,
|
111731
112001
|
"foo": 1
|
111732
112002
|
},
|
112003
|
+
"Terra": {
|
112004
|
+
"-": 60,
|
112005
|
+
"[": 31,
|
112006
|
+
"+": 34,
|
112007
|
+
"*": 65,
|
112008
|
+
"/": 11,
|
112009
|
+
"%": 6,
|
112010
|
+
"and": 21,
|
112011
|
+
"or": 4,
|
112012
|
+
"<": 3,
|
112013
|
+
"<<": 3,
|
112014
|
+
"]": 31,
|
112015
|
+
"terra": 19,
|
112016
|
+
"test0": 2,
|
112017
|
+
"(": 107,
|
112018
|
+
")": 107,
|
112019
|
+
"var": 61,
|
112020
|
+
"a": 20,
|
112021
|
+
"b": 19,
|
112022
|
+
"c": 16,
|
112023
|
+
"d": 10,
|
112024
|
+
"e": 16,
|
112025
|
+
"return": 20,
|
112026
|
+
"end": 36,
|
112027
|
+
"test1": 2,
|
112028
|
+
"test2": 2,
|
112029
|
+
"test3": 2,
|
112030
|
+
"test4": 2,
|
112031
|
+
"test5": 2,
|
112032
|
+
"test6": 2,
|
112033
|
+
"test7": 2,
|
112034
|
+
"test8": 2,
|
112035
|
+
"a0": 4,
|
112036
|
+
"a1": 4,
|
112037
|
+
"b0": 4,
|
112038
|
+
"b1": 4,
|
112039
|
+
"c0": 2,
|
112040
|
+
"c1": 2,
|
112041
|
+
"<=>": 1,
|
112042
|
+
"3": 1,
|
112043
|
+
"not": 3,
|
112044
|
+
"test9": 2,
|
112045
|
+
"8": 1,
|
112046
|
+
"local": 9,
|
112047
|
+
"test": 2,
|
112048
|
+
"require": 2,
|
112049
|
+
"test.eq": 10,
|
112050
|
+
"true": 7,
|
112051
|
+
"C": 2,
|
112052
|
+
"terralib.includecstring": 2,
|
112053
|
+
"#include": 5,
|
112054
|
+
"<stdio.h>": 2,
|
112055
|
+
"<stdlib.h>": 2,
|
112056
|
+
"arraytypes": 3,
|
112057
|
+
"{": 13,
|
112058
|
+
"}": 13,
|
112059
|
+
"function": 5,
|
112060
|
+
"Array": 3,
|
112061
|
+
"T": 5,
|
112062
|
+
"struct": 3,
|
112063
|
+
"ArrayImpl": 6,
|
112064
|
+
"data": 1,
|
112065
|
+
"&": 10,
|
112066
|
+
";": 28,
|
112067
|
+
"N": 8,
|
112068
|
+
"int": 8,
|
112069
|
+
"ArrayImpl.metamethods.__typename": 1,
|
112070
|
+
"self": 3,
|
112071
|
+
"..tostring": 1,
|
112072
|
+
"..": 1,
|
112073
|
+
"init": 3,
|
112074
|
+
"self.data": 4,
|
112075
|
+
"C.malloc": 1,
|
112076
|
+
"N*sizeof": 1,
|
112077
|
+
"self.N": 2,
|
112078
|
+
"free": 1,
|
112079
|
+
"C.free": 1,
|
112080
|
+
"ArrayImpl.metamethods.__apply": 1,
|
112081
|
+
"macro": 2,
|
112082
|
+
"idx": 2,
|
112083
|
+
"ArrayImpl.metamethods.__methodmissing": 1,
|
112084
|
+
"methodname": 2,
|
112085
|
+
"selfexp": 2,
|
112086
|
+
"...": 2,
|
112087
|
+
"args": 2,
|
112088
|
+
"terralib.newlist": 1,
|
112089
|
+
"i": 29,
|
112090
|
+
"symbol": 1,
|
112091
|
+
"promotedargs": 2,
|
112092
|
+
"map": 1,
|
112093
|
+
"if": 1,
|
112094
|
+
"gettype": 1,
|
112095
|
+
"then": 1,
|
112096
|
+
"else": 1,
|
112097
|
+
"quote": 1,
|
112098
|
+
"r": 4,
|
112099
|
+
"for": 10,
|
112100
|
+
"r.N": 2,
|
112101
|
+
"do": 10,
|
112102
|
+
"r.data": 3,
|
112103
|
+
"in": 1,
|
112104
|
+
"Complex": 6,
|
112105
|
+
"real": 1,
|
112106
|
+
"float": 2,
|
112107
|
+
"imag": 1,
|
112108
|
+
"add": 2,
|
112109
|
+
"self.real": 1,
|
112110
|
+
"c.real": 1,
|
112111
|
+
"self.imag": 1,
|
112112
|
+
"c.imag": 1,
|
112113
|
+
"ComplexArray": 2,
|
112114
|
+
"testit": 2,
|
112115
|
+
"ca": 5,
|
112116
|
+
"ra": 2,
|
112117
|
+
"assert": 4,
|
112118
|
+
".real": 1,
|
112119
|
+
"*i": 1,
|
112120
|
+
".imag": 1,
|
112121
|
+
"tostring": 1,
|
112122
|
+
"<math.h>": 1,
|
112123
|
+
"pi": 3,
|
112124
|
+
"solar_mass": 9,
|
112125
|
+
"days_per_year": 13,
|
112126
|
+
"planet": 9,
|
112127
|
+
"x": 1,
|
112128
|
+
"double": 8,
|
112129
|
+
"y": 1,
|
112130
|
+
"z": 1,
|
112131
|
+
"vx": 1,
|
112132
|
+
"vy": 1,
|
112133
|
+
"vz": 1,
|
112134
|
+
"mass": 1,
|
112135
|
+
"advance": 2,
|
112136
|
+
"nbodies": 9,
|
112137
|
+
"bodies": 22,
|
112138
|
+
"dt": 5,
|
112139
|
+
"j": 4,
|
112140
|
+
"b2": 2,
|
112141
|
+
"dx": 9,
|
112142
|
+
"b.x": 4,
|
112143
|
+
"b2.x": 2,
|
112144
|
+
"dy": 9,
|
112145
|
+
"b.y": 4,
|
112146
|
+
"b2.y": 2,
|
112147
|
+
"dz": 9,
|
112148
|
+
"b.z": 4,
|
112149
|
+
"b2.z": 2,
|
112150
|
+
"distance": 7,
|
112151
|
+
"C.sqrt": 2,
|
112152
|
+
"mag": 8,
|
112153
|
+
"C.printf": 4,
|
112154
|
+
"b.vx": 6,
|
112155
|
+
"b2.mass": 4,
|
112156
|
+
"b.vy": 6,
|
112157
|
+
"b.vz": 6,
|
112158
|
+
"b2.vx": 3,
|
112159
|
+
"b.mass": 5,
|
112160
|
+
"b2.vy": 3,
|
112161
|
+
"b2.vz": 3,
|
112162
|
+
"energy": 5,
|
112163
|
+
"offset_momentum": 2,
|
112164
|
+
"px": 4,
|
112165
|
+
"py": 4,
|
112166
|
+
"pz": 4,
|
112167
|
+
".vx": 2,
|
112168
|
+
".mass": 3,
|
112169
|
+
".vy": 2,
|
112170
|
+
".vz": 2,
|
112171
|
+
"NBODIES": 5,
|
112172
|
+
"main": 4,
|
112173
|
+
"argc": 1,
|
112174
|
+
"argv": 2,
|
112175
|
+
"&&": 1,
|
112176
|
+
"int8": 1,
|
112177
|
+
"array": 2,
|
112178
|
+
"sun": 1,
|
112179
|
+
"*/": 5,
|
112180
|
+
"jupiter": 1,
|
112181
|
+
"saturn": 1,
|
112182
|
+
"uranus": 1,
|
112183
|
+
"neptune": 1,
|
112184
|
+
"n": 2,
|
112185
|
+
"C.atoi": 1,
|
112186
|
+
"run": 3,
|
112187
|
+
"compile": 1,
|
112188
|
+
"print": 1,
|
112189
|
+
"test.time": 1,
|
112190
|
+
"terralib.saveobj": 1,
|
112191
|
+
"disas": 1,
|
112192
|
+
"printpretty": 1
|
112193
|
+
},
|
111733
112194
|
"Text": {
|
111734
112195
|
"<?xml>": 3,
|
111735
112196
|
"version=": 3,
|
@@ -120811,7 +121272,7 @@
|
|
120811
121272
|
"categories": 1
|
120812
121273
|
},
|
120813
121274
|
"YAML": {
|
120814
|
-
"-":
|
121275
|
+
"-": 84,
|
120815
121276
|
"name": 18,
|
120816
121277
|
"Ansible": 1,
|
120817
121278
|
"scopeName": 2,
|
@@ -120865,6 +121326,21 @@
|
|
120865
121326
|
"Z_": 1,
|
120866
121327
|
"children": 1,
|
120867
121328
|
"variable.parameter.ansible": 1,
|
121329
|
+
"BasedOnStyle": 1,
|
121330
|
+
"LLVM": 1,
|
121331
|
+
"IndentWidth": 1,
|
121332
|
+
"Language": 3,
|
121333
|
+
"Cpp": 1,
|
121334
|
+
"DerivePointerAlignment": 1,
|
121335
|
+
"false": 1,
|
121336
|
+
"PointerAlignment": 1,
|
121337
|
+
"Left": 1,
|
121338
|
+
"JavaScript": 1,
|
121339
|
+
"ColumnLimit": 1,
|
121340
|
+
"Proto": 1,
|
121341
|
+
"DisableFormat": 1,
|
121342
|
+
"true": 4,
|
121343
|
+
"...": 1,
|
120868
121344
|
"gem": 1,
|
120869
121345
|
"local": 1,
|
120870
121346
|
"gen": 1,
|
@@ -120884,7 +121360,6 @@
|
|
120884
121360
|
"Inspect": 1,
|
120885
121361
|
"file_extensions": 1,
|
120886
121362
|
"hidden": 1,
|
120887
|
-
"true": 3,
|
120888
121363
|
"scope": 2,
|
120889
121364
|
"source.inspect": 1,
|
120890
121365
|
"contexts": 1,
|
@@ -123268,7 +123743,7 @@
|
|
123268
123743
|
"Ox": 1006,
|
123269
123744
|
"Oxygene": 157,
|
123270
123745
|
"Oz": 116,
|
123271
|
-
"PAWN":
|
123746
|
+
"PAWN": 3778,
|
123272
123747
|
"PHP": 21587,
|
123273
123748
|
"PLSQL": 902,
|
123274
123749
|
"PLpgSQL": 2752,
|
@@ -123348,6 +123823,7 @@
|
|
123348
123823
|
"Tcl": 1424,
|
123349
123824
|
"TeX": 8549,
|
123350
123825
|
"Tea": 3,
|
123826
|
+
"Terra": 1294,
|
123351
123827
|
"Text": 13388,
|
123352
123828
|
"Thrift": 6,
|
123353
123829
|
"Turing": 44,
|
@@ -123376,7 +123852,7 @@
|
|
123376
123852
|
"XSLT": 44,
|
123377
123853
|
"Xojo": 807,
|
123378
123854
|
"Xtend": 399,
|
123379
|
-
"YAML":
|
123855
|
+
"YAML": 374,
|
123380
123856
|
"YANG": 176,
|
123381
123857
|
"Zephir": 1026,
|
123382
123858
|
"Zimpl": 123,
|
@@ -123593,7 +124069,7 @@
|
|
123593
124069
|
"Ox": 3,
|
123594
124070
|
"Oxygene": 1,
|
123595
124071
|
"Oz": 1,
|
123596
|
-
"PAWN":
|
124072
|
+
"PAWN": 2,
|
123597
124073
|
"PHP": 15,
|
123598
124074
|
"PLSQL": 6,
|
123599
124075
|
"PLpgSQL": 6,
|
@@ -123673,6 +124149,7 @@
|
|
123673
124149
|
"Tcl": 4,
|
123674
124150
|
"TeX": 5,
|
123675
124151
|
"Tea": 1,
|
124152
|
+
"Terra": 3,
|
123676
124153
|
"Text": 22,
|
123677
124154
|
"Thrift": 1,
|
123678
124155
|
"Turing": 1,
|
@@ -123701,7 +124178,7 @@
|
|
123701
124178
|
"XSLT": 1,
|
123702
124179
|
"Xojo": 6,
|
123703
124180
|
"Xtend": 2,
|
123704
|
-
"YAML":
|
124181
|
+
"YAML": 6,
|
123705
124182
|
"YANG": 1,
|
123706
124183
|
"Zephir": 2,
|
123707
124184
|
"Zimpl": 1,
|
@@ -123713,5 +124190,5 @@
|
|
123713
124190
|
"wisp": 1,
|
123714
124191
|
"xBase": 3
|
123715
124192
|
},
|
123716
|
-
"md5": "
|
124193
|
+
"md5": "63b50880997aa2e18da259a681619bae"
|
123717
124194
|
}
|