github-linguist 4.2.7 → 4.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/linguist/heuristics.rb +35 -1
- data/lib/linguist/language.rb +6 -20
- data/lib/linguist/languages.json +1 -1
- data/lib/linguist/languages.yml +29 -3
- data/lib/linguist/samples.json +1238 -368
- data/lib/linguist/strategy/modeline.rb +30 -0
- data/lib/linguist/tokenizer.rb +2 -1
- data/lib/linguist/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69e993fbcf8c113695f3296c7a51d576cc6df22a
|
4
|
+
data.tar.gz: 02a837a7db42bfbb1c65ed411d71d1f418142180
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95f239b56b6dec4f3811d82881e8548e5574d6a43808cd75343beeb2880d588540e91bfb77a9281ae4e744d6b8ad663902d88f0e71f2af8e042c552946b32bab
|
7
|
+
data.tar.gz: f566b2ce95aa2ecccb5ba1c65fe6b88daddd369e692d258d94974fb798ccdc9437c03c5236f8059d9c4901d0c50d6d41fc18f6d93ba17e4b70c14cf61a11b8f8
|
data/lib/linguist/heuristics.rb
CHANGED
@@ -61,6 +61,9 @@ module Linguist
|
|
61
61
|
@heuristic.call(data)
|
62
62
|
end
|
63
63
|
|
64
|
+
# Common heuristics
|
65
|
+
ObjectiveCRegex = /^[ \t]*@(interface|class|protocol|property|end|synchronised|selector|implementation)\b/
|
66
|
+
|
64
67
|
disambiguate "BitBake", "BlitzBasic" do |data|
|
65
68
|
if /^\s*; /.match(data) || data.include?("End Function")
|
66
69
|
Language["BlitzBasic"]
|
@@ -78,7 +81,7 @@ module Linguist
|
|
78
81
|
end
|
79
82
|
|
80
83
|
disambiguate "Objective-C", "C++", "C" do |data|
|
81
|
-
if
|
84
|
+
if ObjectiveCRegex.match(data)
|
82
85
|
Language["Objective-C"]
|
83
86
|
elsif (/^\s*#\s*include <(cstdint|string|vector|map|list|array|bitset|queue|stack|forward_list|unordered_map|unordered_set|(i|o|io)stream)>/.match(data) ||
|
84
87
|
/^\s*template\s*</.match(data) || /^[ \t]*try/.match(data) || /^[ \t]*catch\s*\(/.match(data) || /^[ \t]*(class|(using[ \t]+)?namespace)\s+\w+/.match(data) || /^[ \t]*(private|public|protected):$/.match(data) || /std::\w+/.match(data))
|
@@ -112,6 +115,15 @@ module Linguist
|
|
112
115
|
end
|
113
116
|
end
|
114
117
|
|
118
|
+
disambiguate "GAP", "Scilab" do |data|
|
119
|
+
if (data.include?("gap> "))
|
120
|
+
Language["GAP"]
|
121
|
+
# Heads up - we don't usually write heuristics like this (with no regex match)
|
122
|
+
else
|
123
|
+
Language["Scilab"]
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
115
127
|
disambiguate "Common Lisp", "OpenCL", "Cool" do |data|
|
116
128
|
if data.include?("(defun ")
|
117
129
|
Language["Common Lisp"]
|
@@ -160,6 +172,20 @@ module Linguist
|
|
160
172
|
end
|
161
173
|
end
|
162
174
|
|
175
|
+
disambiguate "M", "Mathematica", "Matlab", "Mercury", "Objective-C" do |data|
|
176
|
+
if ObjectiveCRegex.match(data)
|
177
|
+
Language["Objective-C"]
|
178
|
+
elsif data.include?(":- module")
|
179
|
+
Language["Mercury"]
|
180
|
+
elsif /^\s*;/.match(data)
|
181
|
+
Language["M"]
|
182
|
+
elsif /^\s*\(\*/.match(data)
|
183
|
+
Language["Mathematica"]
|
184
|
+
elsif /^\s*%/.match(data)
|
185
|
+
Language["Matlab"]
|
186
|
+
end
|
187
|
+
end
|
188
|
+
|
163
189
|
disambiguate "Gosu", "JavaScript" do |data|
|
164
190
|
Language["Gosu"] if /^uses java\./.match(data)
|
165
191
|
end
|
@@ -172,6 +198,14 @@ module Linguist
|
|
172
198
|
end
|
173
199
|
end
|
174
200
|
|
201
|
+
disambiguate "Common Lisp", "NewLisp" do |data|
|
202
|
+
if /^\s*\((defun|in-package|defpackage) /.match(data)
|
203
|
+
Language["Common Lisp"]
|
204
|
+
elsif /^\s*\(define /.match(data)
|
205
|
+
Language["NewLisp"]
|
206
|
+
end
|
207
|
+
end
|
208
|
+
|
175
209
|
disambiguate "TypeScript", "XML" do |data|
|
176
210
|
if data.include?("<TS ")
|
177
211
|
Language["XML"]
|
data/lib/linguist/language.rb
CHANGED
@@ -11,6 +11,7 @@ require 'linguist/samples'
|
|
11
11
|
require 'linguist/file_blob'
|
12
12
|
require 'linguist/blob_helper'
|
13
13
|
require 'linguist/strategy/filename'
|
14
|
+
require 'linguist/strategy/modeline'
|
14
15
|
require 'linguist/shebang'
|
15
16
|
|
16
17
|
module Linguist
|
@@ -94,6 +95,7 @@ module Linguist
|
|
94
95
|
end
|
95
96
|
|
96
97
|
STRATEGIES = [
|
98
|
+
Linguist::Strategy::Modeline,
|
97
99
|
Linguist::Strategy::Filename,
|
98
100
|
Linguist::Shebang,
|
99
101
|
Linguist::Heuristics,
|
@@ -155,7 +157,7 @@ module Linguist
|
|
155
157
|
# Language.find_by_alias('cpp')
|
156
158
|
# # => #<Language name="C++">
|
157
159
|
#
|
158
|
-
# Returns the
|
160
|
+
# Returns the Language or nil if none was found.
|
159
161
|
def self.find_by_alias(name)
|
160
162
|
name && @alias_index[name.downcase]
|
161
163
|
end
|
@@ -219,7 +221,7 @@ module Linguist
|
|
219
221
|
end
|
220
222
|
|
221
223
|
|
222
|
-
# Public: Look up Language by its name
|
224
|
+
# Public: Look up Language by its name.
|
223
225
|
#
|
224
226
|
# name - The String name of the Language
|
225
227
|
#
|
@@ -243,7 +245,7 @@ module Linguist
|
|
243
245
|
#
|
244
246
|
# This list is configured in "popular.yml".
|
245
247
|
#
|
246
|
-
# Returns an Array of
|
248
|
+
# Returns an Array of Languages.
|
247
249
|
def self.popular
|
248
250
|
@popular ||= all.select(&:popular?).sort_by { |lang| lang.name.downcase }
|
249
251
|
end
|
@@ -255,7 +257,7 @@ module Linguist
|
|
255
257
|
#
|
256
258
|
# This list is created from all the languages not listed in "popular.yml".
|
257
259
|
#
|
258
|
-
# Returns an Array of
|
260
|
+
# Returns an Array of Languages.
|
259
261
|
def self.unpopular
|
260
262
|
@unpopular ||= all.select(&:unpopular?).sort_by { |lang| lang.name.downcase }
|
261
263
|
end
|
@@ -375,11 +377,6 @@ module Linguist
|
|
375
377
|
# Returns the name String
|
376
378
|
attr_reader :search_term
|
377
379
|
|
378
|
-
# Public: Get Lexer
|
379
|
-
#
|
380
|
-
# Returns the Lexer
|
381
|
-
attr_reader :lexer
|
382
|
-
|
383
380
|
# Public: Get the name of a TextMate-compatible scope
|
384
381
|
#
|
385
382
|
# Returns the scope
|
@@ -495,16 +492,6 @@ module Linguist
|
|
495
492
|
@searchable
|
496
493
|
end
|
497
494
|
|
498
|
-
# Public: Highlight syntax of text
|
499
|
-
#
|
500
|
-
# text - String of code to be highlighted
|
501
|
-
# options - A Hash of options (defaults to {})
|
502
|
-
#
|
503
|
-
# Returns html String
|
504
|
-
def colorize(text, options = {})
|
505
|
-
lexer.highlight(text, options)
|
506
|
-
end
|
507
|
-
|
508
495
|
# Public: Return name as String representation
|
509
496
|
def to_s
|
510
497
|
name
|
@@ -580,7 +567,6 @@ module Linguist
|
|
580
567
|
:color => options['color'],
|
581
568
|
:type => options['type'],
|
582
569
|
:aliases => options['aliases'],
|
583
|
-
:lexer => options['lexer'],
|
584
570
|
:tm_scope => options['tm_scope'],
|
585
571
|
:ace_mode => options['ace_mode'],
|
586
572
|
:wrap => options['wrap'],
|
data/lib/linguist/languages.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"ABAP":{"type":"programming","extensions":[".abap"],"ace_mode":"abap"},"AGS Script":{"type":"programming","color":"#B9D9FF","aliases":["ags"],"extensions":[".asc",".ash"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"ANTLR":{"type":"programming","color":"#9DC3FF","extensions":[".g4"],"ace_mode":"text"},"APL":{"type":"programming","color":"#8a0707","extensions":[".apl",".dyalog"],"tm_scope":"none","ace_mode":"text"},"ASP":{"type":"programming","color":"#6a40fd","search_term":"aspx-vb","aliases":["aspx","aspx-vb"],"extensions":[".asp",".asax",".ascx",".ashx",".asmx",".aspx",".axd"],"ace_mode":"text"},"ATS":{"type":"programming","color":"#1ac620","aliases":["ats2"],"extensions":[".dats",".atxt",".hats",".sats"],"tm_scope":"source.ocaml","ace_mode":"ocaml"},"ActionScript":{"type":"programming","tm_scope":"source.actionscript.3","color":"#e3491a","search_term":"as3","aliases":["actionscript 3","actionscript3","as3"],"extensions":[".as"],"ace_mode":"actionscript"},"Ada":{"type":"programming","color":"#02f88c","extensions":[".adb",".ada",".ads"],"aliases":["ada95ada2005"],"ace_mode":"ada"},"Agda":{"type":"programming","color":"#467C91","extensions":[".agda"],"ace_mode":"text"},"Alloy":{"type":"programming","color":"#cc5c24","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",".conf"],"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"},"Arc":{"type":"programming","color":"#ca2afe","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":"none"},"AspectJ":{"type":"programming","color":"#1957b0","extensions":[".aj"],"tm_scope":"none","ace_mode":"text"},"Assembly":{"type":"programming","color":"#a67219","search_term":"nasm","aliases":["nasm"],"extensions":[".asm",".ASM",".a51"],"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":"#36699B","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","group":"Shell","search_term":"bat","aliases":["bat","batch","dosbatch","winbatch"],"extensions":[".bat",".cmd"],"tm_scope":"source.dosbatch","ace_mode":"batchfile"},"Befunge":{"extensions":[".befunge"],"ace_mode":"text"},"Bison":{"type":"programming","tm_scope":"source.bison","extensions":[".y"],"ace_mode":"text"},"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":{"extensions":[".b",".bf"],"tm_scope":"source.bf","ace_mode":"text"},"Brightscript":{"type":"programming","extensions":[".brs"],"tm_scope":"none","ace_mode":"text"},"Bro":{"type":"programming","extensions":[".bro"],"ace_mode":"text"},"C":{"type":"programming","color":"#555","extensions":[".c",".C",".H",".cats",".h",".idc",".w"],"ace_mode":"c_cpp"},"C#":{"type":"programming","ace_mode":"csharp","tm_scope":"source.cs","search_term":"csharp","color":"#178600","aliases":["csharp"],"extensions":[".cs",".cshtml",".csx"]},"C++":{"type":"programming","ace_mode":"c_cpp","search_term":"cpp","color":"#f34b7d","aliases":["cpp"],"extensions":[".cpp",".c++",".cc",".cxx",".h",".h++",".hh",".hpp",".hxx",".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":{"extensions":[".cmake",".cmake.in"],"filenames":["CMakeLists.txt"],"ace_mode":"text"},"COBOL":{"type":"programming","extensions":[".cob",".COB",".CPY",".cbl",".ccp",".cobol",".cpy"],"ace_mode":"cobol"},"CSS":{"ace_mode":"css","color":"#563d7c","extensions":[".css"]},"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"},"ChucK":{"extensions":[".ck"],"tm_scope":"source.java","ace_mode":"java"},"Cirru":{"type":"programming","color":"#aaaaff","ace_mode":"cirru","extensions":[".cirru"]},"Clean":{"type":"programming","color":"#3a81ad","extensions":[".icl",".dcl"],"tm_scope":"none","ace_mode":"text"},"Clojure":{"type":"programming","ace_mode":"clojure","color":"#db5855","extensions":[".clj",".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",".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",".lsp",".ny",".podsl"],"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","extensions":[".cr"],"ace_mode":"ruby","tm_scope":"source.ruby","interpreters":["crystal"]},"Cucumber":{"extensions":[".feature"],"tm_scope":"text.gherkin.feature","aliases":["gherkin"],"ace_mode":"text"},"Cuda":{"type":"programming","extensions":[".cu",".cuh"],"tm_scope":"source.cuda-c++","ace_mode":"c_cpp"},"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":"#fcd46d","extensions":[".d",".di"],"ace_mode":"d"},"D-ObjDump":{"type":"data","extensions":[".d-objdump"],"tm_scope":"objdump.x86asm","ace_mode":"assembly_x86"},"DM":{"type":"programming","color":"#075ff1","extensions":[".dm"],"aliases":["byond"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"Darcs Patch":{"search_term":"dpatch","aliases":["dpatch"],"extensions":[".darcspatch",".dpatch"],"tm_scope":"none","ace_mode":"text"},"Dart":{"type":"programming","color":"#98BAD6","extensions":[".dart"],"ace_mode":"dart"},"Diff":{"extensions":[".diff",".patch"],"aliases":["udiff"],"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":"#3ebc27","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"},"Eagle":{"type":"markup","color":"#3994bc","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"},"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"],"extensions":[".el",".emacs"],"ace_mode":"lisp"},"EmberScript":{"type":"programming","color":"#f64e3e","extensions":[".em",".emberscript"],"tm_scope":"source.coffee","ace_mode":"coffee"},"Erlang":{"type":"programming","color":"#0faf8d","extensions":[".erl",".es",".escript",".hrl"],"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":"#33CCFF","extensions":[".fx",".flux"],"tm_scope":"none","ace_mode":"text"},"FORTRAN":{"type":"programming","color":"#4d41b1","extensions":[".f90",".F",".F03",".F08",".F77",".F90",".F95",".FOR",".FPP",".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"},"Forth":{"type":"programming","color":"#341708","extensions":[".fth",".4th",".F",".f",".for",".forth",".fr",".frt",".fs"],"ace_mode":"forth"},"Frege":{"type":"programming","color":"#00cafe","extensions":[".fr"],"tm_scope":"source.haskell","ace_mode":"haskell"},"G-code":{"type":"data","extensions":[".g",".gco",".gcode"],"tm_scope":"none","ace_mode":"gcode"},"GAMS":{"type":"programming","extensions":[".gms"],"tm_scope":"none","ace_mode":"text"},"GAP":{"type":"programming","extensions":[".g",".gap",".gd",".gi"],"tm_scope":"none","ace_mode":"text"},"GAS":{"type":"programming","group":"Assembly","extensions":[".s",".S"],"tm_scope":"source.asm.x86","ace_mode":"assembly_x86"},"GDScript":{"type":"programming","extensions":[".gd"],"tm_scope":"none","ace_mode":"text"},"GLSL":{"group":"C","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":"#8ad353","extensions":[".gml"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"Genshi":{"extensions":[".kid"],"tm_scope":"text.xml.genshi","aliases":["xml+genshi","xml+kid"],"ace_mode":"xml"},"Gentoo Ebuild":{"group":"Shell","extensions":[".ebuild"],"tm_scope":"source.shell","ace_mode":"sh"},"Gentoo Eclass":{"group":"Shell","extensions":[".eclass"],"tm_scope":"source.shell","ace_mode":"sh"},"Gettext Catalog":{"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":"#f6a51f","extensions":[".golo"],"tm_scope":"none","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":"none","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":"#ff0000","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",".DOT",".gv"],"ace_mode":"text"},"Groff":{"extensions":[".man",".1",".2",".3",".4",".5",".6",".7"],"tm_scope":"text.groff","aliases":["nroff"],"ace_mode":"text"},"Groovy":{"type":"programming","ace_mode":"groovy","color":"#e69f56","extensions":[".groovy",".grt",".gtpl",".gvy"],"interpreters":["groovy"]},"Groovy Server Pages":{"group":"Groovy","aliases":["gsp","java server page"],"extensions":[".gsp"],"tm_scope":"text.html.jsp","ace_mode":"jsp"},"HTML":{"type":"markup","tm_scope":"text.html.basic","ace_mode":"html","aliases":["xhtml"],"extensions":[".html",".htm",".html.hl",".st",".xht",".xhtml"]},"HTML+Django":{"type":"markup","tm_scope":"text.html.django","group":"HTML","extensions":[".mustache",".jinja"],"aliases":["html+django/jinja","html+jinja","htmldjango"],"ace_mode":"django"},"HTML+ERB":{"type":"markup","tm_scope":"text.html.erb","group":"HTML","aliases":["erb"],"extensions":[".erb",".erb.deface"],"ace_mode":"html_ruby"},"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"},"Haml":{"group":"HTML","type":"markup","extensions":[".haml",".haml.deface"],"ace_mode":"haml"},"Handlebars":{"type":"markup","aliases":["hbs"],"extensions":[".handlebars",".hbs"],"tm_scope":"text.html.handlebars","ace_mode":"handlebars"},"Harbour":{"type":"programming","color":"#0e60e3","extensions":[".hb"],"tm_scope":"none","ace_mode":"text"},"Haskell":{"type":"programming","color":"#29b544","extensions":[".hs",".hsc"],"ace_mode":"haskell"},"Haxe":{"type":"programming","ace_mode":"haxe","color":"#f7941e","extensions":[".hx",".hxsl"],"tm_scope":"source.haxe.2"},"Hy":{"type":"programming","ace_mode":"text","color":"#7891b1","extensions":[".hy"],"aliases":["hylang"],"tm_scope":"source.hy"},"IDL":{"type":"programming","color":"#e3592c","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",".properties"],"tm_scope":"source.ini","aliases":["dosini"],"ace_mode":"ini"},"IRC log":{"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":{"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":"#fdcd00","extensions":[".thy"],"tm_scope":"source.isabelle.theory","ace_mode":"text"},"J":{"type":"programming","extensions":[".ijs"],"tm_scope":"none","ace_mode":"text"},"JSON":{"type":"data","tm_scope":"source.json","group":"JavaScript","ace_mode":"json","searchable":false,"extensions":[".json",".lock"],"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":{"type":"programming","ace_mode":"jsoniq","extensions":[".jq"],"tm_scope":"source.xquery"},"Jade":{"group":"HTML","type":"markup","extensions":[".jade"],"tm_scope":"source.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":{"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",".jsfl",".jsm",".jss",".jsx",".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"},"KRL":{"type":"programming","color":"#f5c800","extensions":[".krl"],"tm_scope":"none","ace_mode":"text"},"Kit":{"type":"markup","ace_mode":"html","extensions":[".kit"],"tm_scope":"text.html.basic"},"Kotlin":{"type":"programming","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":{"extensions":[".ll"],"ace_mode":"text"},"LOLCODE":{"type":"programming","extensions":[".lol"],"color":"#cc9900","tm_scope":"none","ace_mode":"text"},"LSL":{"type":"programming","ace_mode":"lsl","extensions":[".lsl"],"interpreters":["lsl"],"color":"#3d9970"},"LabVIEW":{"type":"programming","extensions":[".lvproj"],"tm_scope":"none","ace_mode":"text"},"Lasso":{"type":"programming","color":"#2584c3","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":"source.smarty","ace_mode":"smarty"},"Less":{"type":"markup","group":"CSS","extensions":[".less"],"tm_scope":"source.css.less","ace_mode":"less"},"LilyPond":{"extensions":[".ly",".ily"],"ace_mode":"text"},"Liquid":{"type":"markup","extensions":[".liquid"],"tm_scope":"none","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":"#fa1fa1","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"},"MTML":{"type":"markup","color":"#0095d9","extensions":[".mtml"],"tm_scope":"text.html.basic","ace_mode":"html"},"Makefile":{"type":"programming","aliases":["bsdmake","make","mf"],"extensions":[".mak",".mk"],"filenames":["GNUmakefile","Makefile","makefile"],"interpreters":["make"],"ace_mode":"makefile"},"Mako":{"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"},"Mask":{"type":"markup","color":"#f97732","ace_mode":"mask","extensions":[".mask"],"tm_scope":"source.mask"},"Mathematica":{"type":"programming","extensions":[".mathematica",".cdf",".m",".ma",".nb",".nbp"],"aliases":["mma"],"ace_mode":"text"},"Matlab":{"type":"programming","color":"#bb92ac","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":"#ce279c","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"],"tm_scope":"none","ace_mode":"text"},"Mercury":{"type":"programming","color":"#abcdef","ace_mode":"prolog","interpreters":["mmi"],"extensions":[".m",".moo"],"tm_scope":"source.mercury"},"MiniD":{"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"},"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":{"extensions":[".myt"],"tm_scope":"none","ace_mode":"text"},"NSIS":{"extensions":[".nsi",".nsh"],"ace_mode":"text"},"Nemerle":{"type":"programming","color":"#0d3c6e","extensions":[".n"],"ace_mode":"text"},"NetLogo":{"type":"programming","color":"#ff2b2b","extensions":[".nlogo"],"tm_scope":"source.lisp","ace_mode":"lisp"},"Nginx":{"type":"markup","extensions":[".nginxconf"],"tm_scope":"source.nginx","aliases":["nginx configuration file"],"ace_mode":"text"},"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":"#0d8921","extensions":[".nit"],"tm_scope":"source.nit","ace_mode":"text"},"Nix":{"type":"programming","color":"#7070ff","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":{"group":"Python","extensions":[".numpy",".numpyw",".numsc"],"tm_scope":"none","ace_mode":"text"},"OCaml":{"type":"programming","ace_mode":"ocaml","color":"#3be133","extensions":[".ml",".eliom",".eliomi",".ml4",".mli",".mll",".mly"]},"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":"#4886FC","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":"none","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":"text"},"Org":{"type":"prose","wrap":true,"extensions":[".org"],"tm_scope":"none","ace_mode":"text"},"Ox":{"type":"programming","extensions":[".ox",".oxh",".oxo"],"tm_scope":"none","ace_mode":"text"},"Oxygene":{"type":"programming","color":"#5a63a3","extensions":[".oxygene"],"tm_scope":"none","ace_mode":"text"},"Oz":{"type":"programming","color":"#fcaf3e","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",".php3",".php4",".php5",".phpt"],"filenames":["Phakefile"],"interpreters":["php"],"aliases":["inc"]},"Pan":{"type":"programming","color":"#cc0000","extensions":[".pan"],"tm_scope":"none","ace_mode":"text"},"Papyrus":{"type":"programming","color":"#6600cc","extensions":[".psc"],"tm_scope":"none","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":"#b0ce4e","extensions":[".pas",".dfm",".dpr",".lpr",".pp"],"ace_mode":"pascal"},"Perl":{"type":"programming","ace_mode":"perl","color":"#0298c3","extensions":[".pl",".PL",".cgi",".fcgi",".perl",".ph",".plx",".pm",".pod",".psgi",".t"],"interpreters":["perl"]},"Perl6":{"type":"programming","color":"#0298c3","extensions":[".6pl",".6pm",".nqp",".p6",".p6l",".p6m",".pl",".pl6",".pm",".pm6",".t"],"filenames":["Rexfile"],"interpreters":["perl6"],"tm_scope":"none","ace_mode":"perl"},"PigLatin":{"type":"programming","color":"#fcd7de","extensions":[".pig"],"tm_scope":"none","ace_mode":"text"},"Pike":{"type":"programming","color":"#066ab2","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":"none","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":"#2779ab","extensions":[".pde"],"ace_mode":"text"},"Prolog":{"type":"programming","color":"#74283c","extensions":[".pl",".ecl",".pro",".prolog"],"interpreters":["swipl"],"ace_mode":"prolog"},"Propeller Spin":{"type":"programming","color":"#2b446d","extensions":[".spin"],"tm_scope":"none","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":"#cc5555","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":"#bcdc53","extensions":[".purs"],"tm_scope":"source.haskell","ace_mode":"haskell"},"Python":{"type":"programming","ace_mode":"python","color":"#3581ba","extensions":[".py",".cgi",".fcgi",".gyp",".lmi",".pyde",".pyp",".pyt",".pyw",".tac",".wsgi",".xpy"],"filenames":["BUILD","SConscript","SConstruct","Snakefile","wscript"],"interpreters":["python","python2","python3"]},"Python traceback":{"type":"data","group":"Python","searchable":false,"extensions":[".pytb"],"tm_scope":"text.python.traceback","ace_mode":"text"},"QML":{"type":"markup","color":"#44a51c","extensions":[".qml"],"tm_scope":"source.qml","ace_mode":"text"},"QMake":{"extensions":[".pro",".pri"],"interpreters":["qmake"],"ace_mode":"text"},"R":{"type":"programming","color":"#198ce7","aliases":["R","Rscript","splus"],"extensions":[".r",".R",".Rd",".rd",".rsx"],"filenames":[".Rprofile"],"interpreters":["Rscript"],"ace_mode":"r"},"RAML":{"type":"data","lexer":"YAML","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"},"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",".Rmd"],"tm_scope":"none"},"Racket":{"type":"programming","color":"#ae17ff","extensions":[".rkt",".rktd",".rktl",".scrbl"],"tm_scope":"source.racket","ace_mode":"lisp"},"Ragel in Ruby Host":{"type":"programming","color":"#ff9c2e","extensions":[".rl"],"aliases":["ragel-rb","ragel-ruby"],"tm_scope":"none","ace_mode":"text"},"Raw token 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"},"Red":{"type":"programming","color":"#ee0000","extensions":[".red",".reds"],"aliases":["red/system"],"tm_scope":"none","ace_mode":"text"},"Redcode":{"extensions":[".cw"],"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",".mspec",".pluginspec",".podspec",".rabl",".rake",".rbuild",".rbw",".rbx",".ru",".thor",".watchr"],"interpreters":["ruby","macruby","rake"],"filenames":[".pryrc","Appraisals","Berksfile","Buildfile","Gemfile","Gemfile.lock","Guardfile","Jarfile","Mavenfile","Podfile","Puppetfile","Thorfile","Vagrantfile","buildfile"]},"Rust":{"type":"programming","color":"#dea584","extensions":[".rs"],"ace_mode":"rust"},"SAS":{"type":"programming","color":"#1E90FF","extensions":[".sas"],"tm_scope":"source.sas","ace_mode":"text"},"SCSS":{"type":"markup","tm_scope":"source.scss","group":"CSS","ace_mode":"scss","extensions":[".scss"]},"SPARQL":{"type":"data","tm_scope":"source.sparql","ace_mode":"text","extensions":[".sparql",".rq"]},"SQF":{"type":"programming","color":"#FFCB1F","extensions":[".sqf",".hqf"],"tm_scope":"source.sqf","ace_mode":"text"},"SQL":{"type":"data","tm_scope":"source.sql","ace_mode":"sql","extensions":[".sql",".cql",".ddl",".prc",".tab",".udf",".viw"]},"STON":{"type":"data","group":"Smalltalk","extensions":[".ston"],"tm_scope":"source.smalltalk","ace_mode":"text"},"Sage":{"type":"programming","group":"Python","extensions":[".sage",".sagews"],"tm_scope":"source.python","ace_mode":"python"},"SaltStack":{"type":"data","group":"YAML","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"},"Scala":{"type":"programming","ace_mode":"scala","color":"#7dd3b0","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","racket","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","bash","zsh"],"extensions":[".sh",".bash",".bats",".cgi",".command",".fcgi",".ksh",".tmux",".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":"#ff8877","extensions":[".slim"],"ace_mode":"text"},"Smalltalk":{"type":"programming","color":"#596706","extensions":[".st",".cs"],"aliases":["squeak"],"ace_mode":"text"},"Smarty":{"extensions":[".tpl"],"ace_mode":"smarty"},"SourcePawn":{"type":"programming","color":"#f69e1d","aliases":["sourcemod"],"extensions":[".sp"],"tm_scope":"source.sp","ace_mode":"text"},"Squirrel":{"type":"programming","extensions":[".nut"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"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":"none","ace_mode":"stylus"},"SuperCollider":{"type":"programming","color":"#46390b","extensions":[".scd",".sc"],"tm_scope":"none","ace_mode":"text"},"Swift":{"type":"programming","color":"#ffac45","extensions":[".swift"],"ace_mode":"text"},"SystemVerilog":{"type":"programming","color":"#343761","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":"none","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,"extensions":[".txt",".fr"],"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":"PHP","extensions":[".twig"],"tm_scope":"text.html.twig","ace_mode":"twig"},"TypeScript":{"type":"programming","color":"#31859c","aliases":["ts"],"extensions":[".ts"],"tm_scope":"source.ts","ace_mode":"typescript"},"Unified Parallel C":{"type":"programming","group":"C","ace_mode":"c_cpp","color":"#755223","extensions":[".upc"],"tm_scope":"source.c"},"UnrealScript":{"type":"programming","color":"#a54c4d","extensions":[".uc"],"tm_scope":"source.java","ace_mode":"java"},"VCL":{"type":"programming","ace_mode":"perl","color":"#0298c3","extensions":[".vcl"],"tm_scope":"source.perl"},"VHDL":{"type":"programming","color":"#543978","extensions":[".vhdl",".vhd",".vhf",".vhi",".vho",".vhs",".vht",".vhw"],"ace_mode":"vhdl"},"Vala":{"type":"programming","color":"#ee7d06","extensions":[".vala",".vapi"],"ace_mode":"vala"},"Verilog":{"type":"programming","color":"#848bf3","extensions":[".v",".veo"],"ace_mode":"verilog"},"VimL":{"type":"programming","color":"#199c4b","search_term":"vim","aliases":["vim"],"extensions":[".vim"],"filenames":[".vimrc","_vimrc","gvimrc","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":"#0098db","extensions":[".volt"],"tm_scope":"source.d","ace_mode":"d"},"Web Ontology Language":{"type":"markup","color":"#3994bc","extensions":[".owl"],"tm_scope":"text.xml","ace_mode":"xml"},"WebIDL":{"type":"programming","extensions":[".webidl"],"tm_scope":"source.webidl","ace_mode":"text"},"XC":{"type":"programming","extensions":[".xc"],"tm_scope":"source.c","ace_mode":"c_cpp"},"XML":{"type":"markup","ace_mode":"xml","aliases":["rss","xsd","wsdl"],"extensions":[".xml",".ant",".axml",".ccxml",".clixml",".cproject",".csproj",".ct",".dita",".ditamap",".ditaval",".dll.config",".filters",".fsproj",".fxml",".glade",".grxml",".ivy",".jelly",".kml",".launch",".mm",".mxml",".nproj",".nuspec",".osm",".plist",".pluginspec",".ps1xml",".psc1",".pt",".rdf",".rss",".scxml",".srdf",".stTheme",".sublime-snippet",".svg",".targets",".tmCommand",".tmLanguage",".tmPreferences",".tmSnippet",".tmTheme",".tml",".ts",".ui",".urdf",".vbproj",".vcxproj",".vxml",".wsdl",".wsf",".wxi",".wxl",".wxs",".x3d",".xacro",".xaml",".xlf",".xliff",".xmi",".xml.dist",".xsd",".xul",".zcml"],"filenames":[".classpath",".project","Settings.StyleCop","Web.Debug.config","Web.Release.config","Web.config","packages.config"]},"XProc":{"type":"programming","extensions":[".xpl",".xproc"],"tm_scope":"text.xml","ace_mode":"xml"},"XQuery":{"type":"programming","color":"#2700e2","extensions":[".xquery",".xq",".xql",".xqm",".xqy"],"ace_mode":"xquery"},"XS":{"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"},"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",".yaml"],"ace_mode":"yaml"},"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"},"eC":{"type":"programming","search_term":"ec","extensions":[".ec",".eh"],"tm_scope":"none","ace_mode":"text"},"edn":{"type":"data","ace_mode":"clojure","color":"#db5855","extensions":[".edn"],"tm_scope":"source.clojure"},"fish":{"type":"programming","group":"Shell","extensions":[".fish"],"tm_scope":"source.fish","ace_mode":"text"},"mupad":{"extensions":[".mu"],"ace_mode":"text"},"nesC":{"type":"programming","color":"#ffce3b","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"],"ace_mode":"text"},"wisp":{"type":"programming","ace_mode":"clojure","color":"#7582D1","extensions":[".wisp"],"tm_scope":"source.clojure"},"xBase":{"type":"programming","color":"#3a4040","extensions":[".prg"],"tm_scope":"none","ace_mode":"text"}}
|
1
|
+
{"ABAP":{"type":"programming","extensions":[".abap"],"ace_mode":"abap"},"AGS Script":{"type":"programming","color":"#B9D9FF","aliases":["ags"],"extensions":[".asc",".ash"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"ANTLR":{"type":"programming","color":"#9DC3FF","extensions":[".g4"],"ace_mode":"text"},"APL":{"type":"programming","color":"#8a0707","extensions":[".apl",".dyalog"],"tm_scope":"none","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",".atxt",".hats",".sats"],"tm_scope":"source.ocaml","ace_mode":"ocaml"},"ActionScript":{"type":"programming","tm_scope":"source.actionscript.3","color":"#e3491a","search_term":"as3","aliases":["actionscript 3","actionscript3","as3"],"extensions":[".as"],"ace_mode":"actionscript"},"Ada":{"type":"programming","color":"#02f88c","extensions":[".adb",".ada",".ads"],"aliases":["ada95ada2005"],"ace_mode":"ada"},"Agda":{"type":"programming","color":"#467C91","extensions":[".agda"],"ace_mode":"text"},"Alloy":{"type":"programming","color":"#cc5c24","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",".conf"],"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"},"Arc":{"type":"programming","color":"#ca2afe","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":"none"},"AspectJ":{"type":"programming","color":"#1957b0","extensions":[".aj"],"tm_scope":"none","ace_mode":"text"},"Assembly":{"type":"programming","color":"#a67219","search_term":"nasm","aliases":["nasm"],"extensions":[".asm",".ASM",".a51"],"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":"#36699B","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","group":"Shell","search_term":"bat","aliases":["bat","batch","dosbatch","winbatch"],"extensions":[".bat",".cmd"],"tm_scope":"source.dosbatch","ace_mode":"batchfile"},"Befunge":{"extensions":[".befunge"],"ace_mode":"text"},"Bison":{"type":"programming","tm_scope":"source.bison","extensions":[".y"],"ace_mode":"text"},"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":{"extensions":[".b",".bf"],"tm_scope":"source.bf","ace_mode":"text"},"Brightscript":{"type":"programming","extensions":[".brs"],"tm_scope":"none","ace_mode":"text"},"Bro":{"type":"programming","extensions":[".bro"],"ace_mode":"text"},"C":{"type":"programming","color":"#555","extensions":[".c",".C",".H",".cats",".h",".idc",".w"],"ace_mode":"c_cpp"},"C#":{"type":"programming","ace_mode":"csharp","tm_scope":"source.cs","search_term":"csharp","color":"#178600","aliases":["csharp"],"extensions":[".cs",".cshtml",".csx"]},"C++":{"type":"programming","ace_mode":"c_cpp","search_term":"cpp","color":"#f34b7d","aliases":["cpp"],"extensions":[".cpp",".c++",".cc",".cxx",".h",".h++",".hh",".hpp",".hxx",".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":{"extensions":[".cmake",".cmake.in"],"filenames":["CMakeLists.txt"],"ace_mode":"text"},"COBOL":{"type":"programming","extensions":[".cob",".COB",".CPY",".cbl",".ccp",".cobol",".cpy"],"ace_mode":"cobol"},"CSS":{"ace_mode":"css","color":"#563d7c","extensions":[".css"]},"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"},"ChucK":{"extensions":[".ck"],"tm_scope":"source.java","ace_mode":"java"},"Cirru":{"type":"programming","color":"#aaaaff","ace_mode":"cirru","extensions":[".cirru"]},"Clean":{"type":"programming","color":"#3a81ad","extensions":[".icl",".dcl"],"tm_scope":"none","ace_mode":"text"},"Clojure":{"type":"programming","ace_mode":"clojure","color":"#db5855","extensions":[".clj",".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",".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",".lsp",".ny",".podsl"],"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","extensions":[".cr"],"ace_mode":"ruby","tm_scope":"source.ruby","interpreters":["crystal"]},"Cucumber":{"extensions":[".feature"],"tm_scope":"text.gherkin.feature","aliases":["gherkin"],"ace_mode":"text"},"Cuda":{"type":"programming","extensions":[".cu",".cuh"],"tm_scope":"source.cuda-c++","ace_mode":"c_cpp"},"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":"#fcd46d","extensions":[".d",".di"],"ace_mode":"d"},"D-ObjDump":{"type":"data","extensions":[".d-objdump"],"tm_scope":"objdump.x86asm","ace_mode":"assembly_x86"},"DM":{"type":"programming","color":"#075ff1","extensions":[".dm"],"aliases":["byond"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"Darcs Patch":{"search_term":"dpatch","aliases":["dpatch"],"extensions":[".darcspatch",".dpatch"],"tm_scope":"none","ace_mode":"text"},"Dart":{"type":"programming","color":"#98BAD6","extensions":[".dart"],"ace_mode":"dart"},"Diff":{"extensions":[".diff",".patch"],"aliases":["udiff"],"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":"#3ebc27","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"},"Eagle":{"type":"markup","color":"#3994bc","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"},"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":"#f64e3e","extensions":[".em",".emberscript"],"tm_scope":"source.coffee","ace_mode":"coffee"},"Erlang":{"type":"programming","color":"#0faf8d","extensions":[".erl",".es",".escript",".hrl"],"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":"#33CCFF","extensions":[".fx",".flux"],"tm_scope":"none","ace_mode":"text"},"FORTRAN":{"type":"programming","color":"#4d41b1","extensions":[".f90",".F",".F03",".F08",".F77",".F90",".F95",".FOR",".FPP",".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"},"Forth":{"type":"programming","color":"#341708","extensions":[".fth",".4th",".F",".f",".for",".forth",".fr",".frt",".fs"],"ace_mode":"forth"},"Frege":{"type":"programming","color":"#00cafe","extensions":[".fr"],"tm_scope":"source.haskell","ace_mode":"haskell"},"G-code":{"type":"data","extensions":[".g",".gco",".gcode"],"tm_scope":"none","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":"none","ace_mode":"text"},"GAS":{"type":"programming","group":"Assembly","extensions":[".s",".S"],"tm_scope":"source.asm.x86","ace_mode":"assembly_x86"},"GDScript":{"type":"programming","extensions":[".gd"],"tm_scope":"none","ace_mode":"text"},"GLSL":{"group":"C","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":"#8ad353","extensions":[".gml"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"Genshi":{"extensions":[".kid"],"tm_scope":"text.xml.genshi","aliases":["xml+genshi","xml+kid"],"ace_mode":"xml"},"Gentoo Ebuild":{"group":"Shell","extensions":[".ebuild"],"tm_scope":"source.shell","ace_mode":"sh"},"Gentoo Eclass":{"group":"Shell","extensions":[".eclass"],"tm_scope":"source.shell","ace_mode":"sh"},"Gettext Catalog":{"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":"#f6a51f","extensions":[".golo"],"tm_scope":"none","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":"none","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":"#ff0000","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",".DOT",".gv"],"ace_mode":"text"},"Groff":{"extensions":[".man",".1",".2",".3",".4",".5",".6",".7"],"tm_scope":"text.groff","aliases":["nroff"],"ace_mode":"text"},"Groovy":{"type":"programming","ace_mode":"groovy","color":"#e69f56","extensions":[".groovy",".grt",".gtpl",".gvy"],"interpreters":["groovy"]},"Groovy Server Pages":{"group":"Groovy","aliases":["gsp","java server page"],"extensions":[".gsp"],"tm_scope":"text.html.jsp","ace_mode":"jsp"},"HTML":{"type":"markup","tm_scope":"text.html.basic","ace_mode":"html","aliases":["xhtml"],"extensions":[".html",".htm",".html.hl",".st",".xht",".xhtml"]},"HTML+Django":{"type":"markup","tm_scope":"text.html.django","group":"HTML","extensions":[".mustache",".jinja"],"aliases":["html+django/jinja","html+jinja","htmldjango"],"ace_mode":"django"},"HTML+ERB":{"type":"markup","tm_scope":"text.html.erb","group":"HTML","aliases":["erb"],"extensions":[".erb",".erb.deface"],"ace_mode":"html_ruby"},"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"},"Haml":{"group":"HTML","type":"markup","extensions":[".haml",".haml.deface"],"ace_mode":"haml"},"Handlebars":{"type":"markup","aliases":["hbs"],"extensions":[".handlebars",".hbs"],"tm_scope":"text.html.handlebars","ace_mode":"handlebars"},"Harbour":{"type":"programming","color":"#0e60e3","extensions":[".hb"],"tm_scope":"none","ace_mode":"text"},"Haskell":{"type":"programming","color":"#29b544","extensions":[".hs",".hsc"],"ace_mode":"haskell"},"Haxe":{"type":"programming","ace_mode":"haxe","color":"#f7941e","extensions":[".hx",".hxsl"],"tm_scope":"source.haxe.2"},"Hy":{"type":"programming","ace_mode":"text","color":"#7891b1","extensions":[".hy"],"aliases":["hylang"],"tm_scope":"source.hy"},"IDL":{"type":"programming","color":"#e3592c","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",".properties"],"tm_scope":"source.ini","aliases":["dosini"],"ace_mode":"ini"},"IRC log":{"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":{"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":"#fdcd00","extensions":[".thy"],"tm_scope":"source.isabelle.theory","ace_mode":"text"},"J":{"type":"programming","extensions":[".ijs"],"tm_scope":"none","ace_mode":"text"},"JSON":{"type":"data","tm_scope":"source.json","group":"JavaScript","ace_mode":"json","searchable":false,"extensions":[".json",".lock"],"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":{"type":"programming","ace_mode":"jsoniq","extensions":[".jq"],"tm_scope":"source.xquery"},"Jade":{"group":"HTML","type":"markup","extensions":[".jade"],"tm_scope":"source.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":{"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",".jsfl",".jsm",".jss",".jsx",".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"},"KRL":{"type":"programming","color":"#f5c800","extensions":[".krl"],"tm_scope":"none","ace_mode":"text"},"Kit":{"type":"markup","ace_mode":"html","extensions":[".kit"],"tm_scope":"text.html.basic"},"Kotlin":{"type":"programming","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":{"extensions":[".ll"],"ace_mode":"text"},"LOLCODE":{"type":"programming","extensions":[".lol"],"color":"#cc9900","tm_scope":"none","ace_mode":"text"},"LSL":{"type":"programming","ace_mode":"lsl","extensions":[".lsl"],"interpreters":["lsl"],"color":"#3d9970"},"LabVIEW":{"type":"programming","extensions":[".lvproj"],"tm_scope":"none","ace_mode":"text"},"Lasso":{"type":"programming","color":"#2584c3","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":"source.smarty","ace_mode":"smarty"},"Less":{"type":"markup","group":"CSS","extensions":[".less"],"tm_scope":"source.css.less","ace_mode":"less"},"LilyPond":{"extensions":[".ly",".ily"],"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":"#fa1fa1","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"},"MTML":{"type":"markup","color":"#0095d9","extensions":[".mtml"],"tm_scope":"text.html.basic","ace_mode":"html"},"Makefile":{"type":"programming","aliases":["bsdmake","make","mf"],"extensions":[".mak",".mk"],"filenames":["GNUmakefile","Makefile","makefile"],"interpreters":["make"],"ace_mode":"makefile"},"Mako":{"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"},"Mask":{"type":"markup","color":"#f97732","ace_mode":"mask","extensions":[".mask"],"tm_scope":"source.mask"},"Mathematica":{"type":"programming","extensions":[".mathematica",".cdf",".m",".ma",".nb",".nbp"],"aliases":["mma"],"ace_mode":"text"},"Matlab":{"type":"programming","color":"#bb92ac","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":"#ce279c","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"],"tm_scope":"none","ace_mode":"text"},"Mercury":{"type":"programming","color":"#abcdef","ace_mode":"prolog","interpreters":["mmi"],"extensions":[".m",".moo"],"tm_scope":"source.mercury"},"MiniD":{"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"},"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":{"extensions":[".myt"],"tm_scope":"none","ace_mode":"text"},"NSIS":{"extensions":[".nsi",".nsh"],"ace_mode":"text"},"Nemerle":{"type":"programming","color":"#0d3c6e","extensions":[".n"],"ace_mode":"text"},"NetLogo":{"type":"programming","color":"#ff2b2b","extensions":[".nlogo"],"tm_scope":"source.lisp","ace_mode":"lisp"},"NewLisp":{"type":"programming","lexer":"NewLisp","color":"#eedd66","extensions":[".nl",".lisp",".lsp"],"interpreters":["newlisp"],"tm_scope":"source.lisp","ace_mode":"lisp"},"Nginx":{"type":"markup","extensions":[".nginxconf"],"tm_scope":"source.nginx","aliases":["nginx configuration file"],"ace_mode":"text"},"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":"#0d8921","extensions":[".nit"],"tm_scope":"source.nit","ace_mode":"text"},"Nix":{"type":"programming","color":"#7070ff","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":{"group":"Python","extensions":[".numpy",".numpyw",".numsc"],"tm_scope":"none","ace_mode":"text"},"OCaml":{"type":"programming","ace_mode":"ocaml","color":"#3be133","extensions":[".ml",".eliom",".eliomi",".ml4",".mli",".mll",".mly"]},"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":"#4886FC","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":"none","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":"none","ace_mode":"text"},"Oxygene":{"type":"programming","color":"#5a63a3","extensions":[".oxygene"],"tm_scope":"none","ace_mode":"text"},"Oz":{"type":"programming","color":"#fcaf3e","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",".php3",".php4",".php5",".phpt"],"filenames":["Phakefile"],"interpreters":["php"],"aliases":["inc"]},"Pan":{"type":"programming","color":"#cc0000","extensions":[".pan"],"tm_scope":"none","ace_mode":"text"},"Papyrus":{"type":"programming","color":"#6600cc","extensions":[".psc"],"tm_scope":"none","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":"#b0ce4e","extensions":[".pas",".dfm",".dpr",".lpr",".pp"],"ace_mode":"pascal"},"Perl":{"type":"programming","ace_mode":"perl","color":"#0298c3","extensions":[".pl",".PL",".cgi",".fcgi",".perl",".ph",".plx",".pm",".pod",".psgi",".t"],"interpreters":["perl"]},"Perl6":{"type":"programming","color":"#0298c3","extensions":[".6pl",".6pm",".nqp",".p6",".p6l",".p6m",".pl",".pl6",".pm",".pm6",".t"],"filenames":["Rexfile"],"interpreters":["perl6"],"tm_scope":"none","ace_mode":"perl"},"PigLatin":{"type":"programming","color":"#fcd7de","extensions":[".pig"],"tm_scope":"none","ace_mode":"text"},"Pike":{"type":"programming","color":"#066ab2","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":"none","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":"#2779ab","extensions":[".pde"],"ace_mode":"text"},"Prolog":{"type":"programming","color":"#74283c","extensions":[".pl",".ecl",".pro",".prolog"],"interpreters":["swipl"],"ace_mode":"prolog"},"Propeller Spin":{"type":"programming","color":"#2b446d","extensions":[".spin"],"tm_scope":"none","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":"#cc5555","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":"#bcdc53","extensions":[".purs"],"tm_scope":"source.haskell","ace_mode":"haskell"},"Python":{"type":"programming","ace_mode":"python","color":"#3581ba","extensions":[".py",".cgi",".fcgi",".gyp",".lmi",".pyde",".pyp",".pyt",".pyw",".tac",".wsgi",".xpy"],"filenames":["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":"markup","color":"#44a51c","extensions":[".qml"],"tm_scope":"source.qml","ace_mode":"text"},"QMake":{"extensions":[".pro",".pri"],"interpreters":["qmake"],"ace_mode":"text"},"R":{"type":"programming","color":"#198ce7","aliases":["R","Rscript","splus"],"extensions":[".r",".R",".Rd",".rd",".rsx"],"filenames":[".Rprofile"],"interpreters":["Rscript"],"ace_mode":"r"},"RAML":{"type":"data","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"},"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",".Rmd"],"tm_scope":"none"},"Racket":{"type":"programming","color":"#ae17ff","extensions":[".rkt",".rktd",".rktl",".scrbl"],"tm_scope":"source.racket","ace_mode":"lisp"},"Ragel in Ruby Host":{"type":"programming","color":"#ff9c2e","extensions":[".rl"],"aliases":["ragel-rb","ragel-ruby"],"tm_scope":"none","ace_mode":"text"},"Raw token 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"},"Red":{"type":"programming","color":"#ee0000","extensions":[".red",".reds"],"aliases":["red/system"],"tm_scope":"none","ace_mode":"text"},"Redcode":{"extensions":[".cw"],"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",".mspec",".pluginspec",".podspec",".rabl",".rake",".rbuild",".rbw",".rbx",".ru",".thor",".watchr"],"interpreters":["ruby","macruby","rake"],"filenames":[".pryrc","Appraisals","Berksfile","Buildfile","Gemfile","Gemfile.lock","Guardfile","Jarfile","Mavenfile","Podfile","Puppetfile","Thorfile","Vagrantfile","buildfile"]},"Rust":{"type":"programming","color":"#dea584","extensions":[".rs"],"ace_mode":"rust"},"SAS":{"type":"programming","color":"#1E90FF","extensions":[".sas"],"tm_scope":"source.sas","ace_mode":"text"},"SCSS":{"type":"markup","tm_scope":"source.scss","group":"CSS","ace_mode":"scss","extensions":[".scss"]},"SPARQL":{"type":"data","tm_scope":"source.sparql","ace_mode":"text","extensions":[".sparql",".rq"]},"SQF":{"type":"programming","color":"#FFCB1F","extensions":[".sqf",".hqf"],"tm_scope":"source.sqf","ace_mode":"text"},"SQL":{"type":"data","tm_scope":"source.sql","ace_mode":"sql","extensions":[".sql",".cql",".ddl",".prc",".tab",".udf",".viw"]},"STON":{"type":"data","group":"Smalltalk","extensions":[".ston"],"tm_scope":"source.smalltalk","ace_mode":"text"},"Sage":{"type":"programming","group":"Python","extensions":[".sage",".sagews"],"tm_scope":"source.python","ace_mode":"python"},"SaltStack":{"type":"data","group":"YAML","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"},"Scala":{"type":"programming","ace_mode":"scala","color":"#7dd3b0","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","racket","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","bash","zsh"],"extensions":[".sh",".bash",".bats",".cgi",".command",".fcgi",".ksh",".tmux",".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":"#ff8877","extensions":[".slim"],"ace_mode":"text"},"Smalltalk":{"type":"programming","color":"#596706","extensions":[".st",".cs"],"aliases":["squeak"],"ace_mode":"text"},"Smarty":{"extensions":[".tpl"],"ace_mode":"smarty"},"SourcePawn":{"type":"programming","color":"#f69e1d","aliases":["sourcemod"],"extensions":[".sp"],"tm_scope":"source.sp","ace_mode":"text"},"Squirrel":{"type":"programming","extensions":[".nut"],"tm_scope":"source.c++","ace_mode":"c_cpp"},"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":"none","ace_mode":"stylus"},"SuperCollider":{"type":"programming","color":"#46390b","extensions":[".scd",".sc"],"tm_scope":"none","ace_mode":"text"},"Swift":{"type":"programming","color":"#ffac45","extensions":[".swift"],"ace_mode":"text"},"SystemVerilog":{"type":"programming","color":"#343761","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":"none","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,"extensions":[".txt",".fr"],"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":"PHP","extensions":[".twig"],"tm_scope":"text.html.twig","ace_mode":"twig"},"TypeScript":{"type":"programming","color":"#31859c","aliases":["ts"],"extensions":[".ts"],"tm_scope":"source.ts","ace_mode":"typescript"},"Unified Parallel C":{"type":"programming","group":"C","ace_mode":"c_cpp","color":"#755223","extensions":[".upc"],"tm_scope":"source.c"},"UnrealScript":{"type":"programming","color":"#a54c4d","extensions":[".uc"],"tm_scope":"source.java","ace_mode":"java"},"VCL":{"type":"programming","ace_mode":"perl","color":"#0298c3","extensions":[".vcl"],"tm_scope":"source.perl"},"VHDL":{"type":"programming","color":"#543978","extensions":[".vhdl",".vhd",".vhf",".vhi",".vho",".vhs",".vht",".vhw"],"ace_mode":"vhdl"},"Vala":{"type":"programming","color":"#ee7d06","extensions":[".vala",".vapi"],"ace_mode":"vala"},"Verilog":{"type":"programming","color":"#848bf3","extensions":[".v",".veo"],"ace_mode":"verilog"},"VimL":{"type":"programming","color":"#199c4b","search_term":"vim","aliases":["vim"],"extensions":[".vim"],"filenames":[".vimrc","_vimrc","gvimrc","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":"#0098db","extensions":[".volt"],"tm_scope":"source.d","ace_mode":"d"},"Web Ontology Language":{"type":"markup","color":"#3994bc","extensions":[".owl"],"tm_scope":"text.xml","ace_mode":"xml"},"WebIDL":{"type":"programming","extensions":[".webidl"],"tm_scope":"source.webidl","ace_mode":"text"},"XC":{"type":"programming","extensions":[".xc"],"tm_scope":"source.c","ace_mode":"c_cpp"},"XML":{"type":"markup","ace_mode":"xml","aliases":["rss","xsd","wsdl"],"extensions":[".xml",".ant",".axml",".ccxml",".clixml",".cproject",".csproj",".ct",".dita",".ditamap",".ditaval",".dll.config",".filters",".fsproj",".fxml",".glade",".grxml",".ivy",".jelly",".kml",".launch",".mm",".mxml",".nproj",".nuspec",".osm",".plist",".pluginspec",".ps1xml",".psc1",".pt",".rdf",".rss",".scxml",".srdf",".stTheme",".sublime-snippet",".svg",".targets",".tmCommand",".tmLanguage",".tmPreferences",".tmSnippet",".tmTheme",".tml",".ts",".ui",".urdf",".vbproj",".vcxproj",".vxml",".wsdl",".wsf",".wxi",".wxl",".wxs",".x3d",".xacro",".xaml",".xlf",".xliff",".xmi",".xml.dist",".xsd",".xul",".zcml"],"filenames":[".classpath",".project","Settings.StyleCop","Web.Debug.config","Web.Release.config","Web.config","packages.config"]},"XProc":{"type":"programming","extensions":[".xpl",".xproc"],"tm_scope":"text.xml","ace_mode":"xml"},"XQuery":{"type":"programming","color":"#2700e2","extensions":[".xquery",".xq",".xql",".xqm",".xqy"],"ace_mode":"xquery"},"XS":{"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"},"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",".yaml"],"ace_mode":"yaml"},"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","search_term":"ec","extensions":[".ec",".eh"],"tm_scope":"none","ace_mode":"text"},"edn":{"type":"data","ace_mode":"clojure","color":"#db5855","extensions":[".edn"],"tm_scope":"source.clojure"},"fish":{"type":"programming","group":"Shell","extensions":[".fish"],"tm_scope":"source.fish","ace_mode":"text"},"mupad":{"extensions":[".mu"],"ace_mode":"text"},"nesC":{"type":"programming","color":"#ffce3b","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"],"ace_mode":"text"},"wisp":{"type":"programming","ace_mode":"clojure","color":"#7582D1","extensions":[".wisp"],"tm_scope":"source.clojure"},"xBase":{"type":"programming","color":"#3a4040","extensions":[".prg"],"tm_scope":"none","ace_mode":"text"}}
|
data/lib/linguist/languages.yml
CHANGED
@@ -61,6 +61,7 @@ ASP:
|
|
61
61
|
type: programming
|
62
62
|
color: "#6a40fd"
|
63
63
|
search_term: aspx-vb
|
64
|
+
tm_scope: text.html.asp
|
64
65
|
aliases:
|
65
66
|
- aspx
|
66
67
|
- aspx-vb
|
@@ -811,9 +812,11 @@ Emacs Lisp:
|
|
811
812
|
- emacs
|
812
813
|
filenames:
|
813
814
|
- .emacs
|
815
|
+
- .emacs.desktop
|
814
816
|
extensions:
|
815
817
|
- .el
|
816
818
|
- .emacs
|
819
|
+
- .emacs.desktop
|
817
820
|
ace_mode: lisp
|
818
821
|
|
819
822
|
EmberScript:
|
@@ -956,6 +959,7 @@ GAP:
|
|
956
959
|
- .gap
|
957
960
|
- .gd
|
958
961
|
- .gi
|
962
|
+
- .tst
|
959
963
|
tm_scope: none
|
960
964
|
ace_mode: text
|
961
965
|
|
@@ -1596,7 +1600,7 @@ Liquid:
|
|
1596
1600
|
type: markup
|
1597
1601
|
extensions:
|
1598
1602
|
- .liquid
|
1599
|
-
tm_scope:
|
1603
|
+
tm_scope: text.html.liquid
|
1600
1604
|
ace_mode: liquid
|
1601
1605
|
|
1602
1606
|
Literate Agda:
|
@@ -1883,6 +1887,19 @@ NetLogo:
|
|
1883
1887
|
tm_scope: source.lisp
|
1884
1888
|
ace_mode: lisp
|
1885
1889
|
|
1890
|
+
NewLisp:
|
1891
|
+
type: programming
|
1892
|
+
lexer: NewLisp
|
1893
|
+
color: "#eedd66"
|
1894
|
+
extensions:
|
1895
|
+
- .nl
|
1896
|
+
- .lisp
|
1897
|
+
- .lsp
|
1898
|
+
interpreters:
|
1899
|
+
- newlisp
|
1900
|
+
tm_scope: source.lisp
|
1901
|
+
ace_mode: lisp
|
1902
|
+
|
1886
1903
|
Nginx:
|
1887
1904
|
type: markup
|
1888
1905
|
extensions:
|
@@ -2055,7 +2072,7 @@ OpenSCAD:
|
|
2055
2072
|
extensions:
|
2056
2073
|
- .scad
|
2057
2074
|
tm_scope: none
|
2058
|
-
ace_mode:
|
2075
|
+
ace_mode: scad
|
2059
2076
|
|
2060
2077
|
Org:
|
2061
2078
|
type: prose
|
@@ -2379,6 +2396,8 @@ Python:
|
|
2379
2396
|
- python
|
2380
2397
|
- python2
|
2381
2398
|
- python3
|
2399
|
+
aliases:
|
2400
|
+
- rusthon
|
2382
2401
|
|
2383
2402
|
Python traceback:
|
2384
2403
|
type: data
|
@@ -2426,7 +2445,6 @@ R:
|
|
2426
2445
|
|
2427
2446
|
RAML:
|
2428
2447
|
type: data
|
2429
|
-
lexer: YAML
|
2430
2448
|
ace_mode: yaml
|
2431
2449
|
tm_scope: source.yaml
|
2432
2450
|
color: "#77d9fb"
|
@@ -3291,6 +3309,14 @@ Zimpl:
|
|
3291
3309
|
tm_scope: none
|
3292
3310
|
ace_mode: text
|
3293
3311
|
|
3312
|
+
desktop:
|
3313
|
+
type: data
|
3314
|
+
extensions:
|
3315
|
+
- .desktop
|
3316
|
+
- .desktop.in
|
3317
|
+
tm_scope: source.desktop
|
3318
|
+
ace_mode: text
|
3319
|
+
|
3294
3320
|
eC:
|
3295
3321
|
type: programming
|
3296
3322
|
search_term: ec
|
data/lib/linguist/samples.json
CHANGED
@@ -136,7 +136,8 @@
|
|
136
136
|
],
|
137
137
|
"Common Lisp": [
|
138
138
|
".cl",
|
139
|
-
".lisp"
|
139
|
+
".lisp",
|
140
|
+
".lsp"
|
140
141
|
],
|
141
142
|
"Component Pascal": [
|
142
143
|
".cp",
|
@@ -187,6 +188,7 @@
|
|
187
188
|
".elm"
|
188
189
|
],
|
189
190
|
"Emacs Lisp": [
|
191
|
+
".desktop",
|
190
192
|
".el"
|
191
193
|
],
|
192
194
|
"EmberScript": [
|
@@ -227,7 +229,8 @@
|
|
227
229
|
"GAP": [
|
228
230
|
".g",
|
229
231
|
".gd",
|
230
|
-
".gi"
|
232
|
+
".gi",
|
233
|
+
".tst"
|
231
234
|
],
|
232
235
|
"GAS": [
|
233
236
|
".s"
|
@@ -480,6 +483,10 @@
|
|
480
483
|
"NetLogo": [
|
481
484
|
".nlogo"
|
482
485
|
],
|
486
|
+
"NewLisp": [
|
487
|
+
".lisp",
|
488
|
+
".lsp"
|
489
|
+
],
|
483
490
|
"Nimrod": [
|
484
491
|
".nim"
|
485
492
|
],
|
@@ -598,6 +605,7 @@
|
|
598
605
|
],
|
599
606
|
"PowerShell": [
|
600
607
|
".ps1",
|
608
|
+
".psd1",
|
601
609
|
".psm1"
|
602
610
|
],
|
603
611
|
"Processing": [
|
@@ -908,6 +916,9 @@
|
|
908
916
|
"Zimpl": [
|
909
917
|
".zmpl"
|
910
918
|
],
|
919
|
+
"desktop": [
|
920
|
+
".desktop"
|
921
|
+
],
|
911
922
|
"edn": [
|
912
923
|
".edn"
|
913
924
|
],
|
@@ -946,6 +957,9 @@
|
|
946
957
|
"Makefile": [
|
947
958
|
"make"
|
948
959
|
],
|
960
|
+
"NewLisp": [
|
961
|
+
"newlisp"
|
962
|
+
],
|
949
963
|
"Nu": [
|
950
964
|
"nush"
|
951
965
|
],
|
@@ -1082,8 +1096,8 @@
|
|
1082
1096
|
".gemrc"
|
1083
1097
|
]
|
1084
1098
|
},
|
1085
|
-
"tokens_total":
|
1086
|
-
"languages_total":
|
1099
|
+
"tokens_total": 756031,
|
1100
|
+
"languages_total": 1162,
|
1087
1101
|
"tokens": {
|
1088
1102
|
"ABAP": {
|
1089
1103
|
"*/**": 1,
|
@@ -19726,10 +19740,10 @@
|
|
19726
19740
|
"</cfcomponent>": 1
|
19727
19741
|
},
|
19728
19742
|
"Common Lisp": {
|
19729
|
-
";":
|
19743
|
+
";": 162,
|
19730
19744
|
"@file": 1,
|
19731
19745
|
"macros": 2,
|
19732
|
-
"-":
|
19746
|
+
"-": 171,
|
19733
19747
|
"advanced.cl": 1,
|
19734
19748
|
"@breif": 1,
|
19735
19749
|
"Advanced": 1,
|
@@ -19741,12 +19755,12 @@
|
|
19741
19755
|
"Macro": 1,
|
19742
19756
|
"definition": 1,
|
19743
19757
|
"skeleton": 1,
|
19744
|
-
"(":
|
19745
|
-
"defmacro":
|
19758
|
+
"(": 379,
|
19759
|
+
"defmacro": 6,
|
19746
19760
|
"name": 6,
|
19747
19761
|
"parameter*": 1,
|
19748
|
-
")":
|
19749
|
-
"body":
|
19762
|
+
")": 386,
|
19763
|
+
"body": 9,
|
19750
19764
|
"form*": 1,
|
19751
19765
|
"Note": 2,
|
19752
19766
|
"that": 5,
|
@@ -19756,7 +19770,7 @@
|
|
19756
19770
|
"most": 2,
|
19757
19771
|
"often": 1,
|
19758
19772
|
"used": 2,
|
19759
|
-
"in":
|
19773
|
+
"in": 24,
|
19760
19774
|
"the": 35,
|
19761
19775
|
"form": 1,
|
19762
19776
|
"primep": 4,
|
@@ -19765,22 +19779,22 @@
|
|
19765
19779
|
"number": 2,
|
19766
19780
|
"for": 3,
|
19767
19781
|
"prime": 12,
|
19768
|
-
"defun":
|
19782
|
+
"defun": 24,
|
19769
19783
|
"n": 8,
|
19770
|
-
"if":
|
19784
|
+
"if": 15,
|
19771
19785
|
"<": 1,
|
19772
19786
|
"return": 3,
|
19773
19787
|
"from": 8,
|
19774
19788
|
"do": 9,
|
19775
19789
|
"i": 8,
|
19776
|
-
"+":
|
19790
|
+
"+": 37,
|
19777
19791
|
"p": 10,
|
19778
19792
|
"t": 7,
|
19779
19793
|
"not": 6,
|
19780
19794
|
"zerop": 1,
|
19781
19795
|
"mod": 1,
|
19782
19796
|
"sqrt": 1,
|
19783
|
-
"when":
|
19797
|
+
"when": 5,
|
19784
19798
|
"next": 11,
|
19785
19799
|
"bigger": 1,
|
19786
19800
|
"than": 1,
|
@@ -19814,7 +19828,7 @@
|
|
19814
19828
|
"arguments": 1,
|
19815
19829
|
"var": 49,
|
19816
19830
|
"range": 4,
|
19817
|
-
"&":
|
19831
|
+
"&": 11,
|
19818
19832
|
"rest": 5,
|
19819
19833
|
"let": 6,
|
19820
19834
|
"first": 5,
|
@@ -19852,8 +19866,8 @@
|
|
19852
19866
|
"names": 2,
|
19853
19867
|
"collect": 1,
|
19854
19868
|
"gensym": 1,
|
19855
|
-
"#":
|
19856
|
-
"|":
|
19869
|
+
"#": 17,
|
19870
|
+
"|": 11,
|
19857
19871
|
"ESCUELA": 1,
|
19858
19872
|
"POLITECNICA": 1,
|
19859
19873
|
"SUPERIOR": 1,
|
@@ -19873,7 +19887,7 @@
|
|
19873
19887
|
"Norvig": 1,
|
19874
19888
|
"Global": 1,
|
19875
19889
|
"variables": 6,
|
19876
|
-
"defvar":
|
19890
|
+
"defvar": 5,
|
19877
19891
|
"*hypothesis": 1,
|
19878
19892
|
"list*": 7,
|
19879
19893
|
"*rule": 4,
|
@@ -19885,7 +19899,7 @@
|
|
19885
19899
|
"no": 6,
|
19886
19900
|
"bindings": 45,
|
19887
19901
|
"lambda": 4,
|
19888
|
-
"b":
|
19902
|
+
"b": 7,
|
19889
19903
|
"mapcar": 2,
|
19890
19904
|
"man": 3,
|
19891
19905
|
"luis": 1,
|
@@ -19895,7 +19909,7 @@
|
|
19895
19909
|
"daniel": 1,
|
19896
19910
|
"laura": 1,
|
19897
19911
|
"facts": 1,
|
19898
|
-
"x":
|
19912
|
+
"x": 52,
|
19899
19913
|
"aux": 3,
|
19900
19914
|
"unify": 12,
|
19901
19915
|
"hypothesis": 10,
|
@@ -19966,7 +19980,7 @@
|
|
19966
19980
|
"E.49": 2,
|
19967
19981
|
"XS.50": 2,
|
19968
19982
|
"R2.": 1,
|
19969
|
-
"eval":
|
19983
|
+
"eval": 7,
|
19970
19984
|
"ifs": 1,
|
19971
19985
|
"NOT": 2,
|
19972
19986
|
"question": 1,
|
@@ -19995,7 +20009,7 @@
|
|
19995
20009
|
"Auxiliary": 1,
|
19996
20010
|
"Functions": 1,
|
19997
20011
|
"cond": 3,
|
19998
|
-
"or":
|
20012
|
+
"or": 5,
|
19999
20013
|
"get": 5,
|
20000
20014
|
"lookup": 5,
|
20001
20015
|
"occurs": 5,
|
@@ -20020,7 +20034,7 @@
|
|
20020
20034
|
"anywhere": 6,
|
20021
20035
|
"predicate": 8,
|
20022
20036
|
"tree": 11,
|
20023
|
-
"optional":
|
20037
|
+
"optional": 3,
|
20024
20038
|
"so": 4,
|
20025
20039
|
"far": 4,
|
20026
20040
|
"atom": 3,
|
@@ -20033,27 +20047,27 @@
|
|
20033
20047
|
"expresion": 2,
|
20034
20048
|
"some": 1,
|
20035
20049
|
"EOF": 1,
|
20036
|
-
"*":
|
20037
|
-
"lisp":
|
20038
|
-
"package":
|
20039
|
-
"foo":
|
20040
|
-
"Header":
|
20041
|
-
"comment.":
|
20042
|
-
"*foo*":
|
20043
|
-
"execute":
|
20044
|
-
"compile":
|
20045
|
-
"toplevel":
|
20046
|
-
"load":
|
20047
|
-
"add":
|
20048
|
-
"y":
|
20049
|
-
"key":
|
20050
|
-
"z":
|
20051
|
-
"declare":
|
20052
|
-
"ignore":
|
20053
|
-
"Inline":
|
20054
|
-
"Multi":
|
20055
|
-
"line":
|
20056
|
-
"After":
|
20050
|
+
"*": 4,
|
20051
|
+
"lisp": 2,
|
20052
|
+
"package": 2,
|
20053
|
+
"foo": 4,
|
20054
|
+
"Header": 2,
|
20055
|
+
"comment.": 8,
|
20056
|
+
"*foo*": 2,
|
20057
|
+
"execute": 2,
|
20058
|
+
"compile": 2,
|
20059
|
+
"toplevel": 4,
|
20060
|
+
"load": 2,
|
20061
|
+
"add": 2,
|
20062
|
+
"y": 4,
|
20063
|
+
"key": 2,
|
20064
|
+
"z": 4,
|
20065
|
+
"declare": 2,
|
20066
|
+
"ignore": 2,
|
20067
|
+
"Inline": 2,
|
20068
|
+
"Multi": 2,
|
20069
|
+
"line": 4,
|
20070
|
+
"After": 2
|
20057
20071
|
},
|
20058
20072
|
"Component Pascal": {
|
20059
20073
|
"MODULE": 2,
|
@@ -23279,16 +23293,61 @@
|
|
23279
23293
|
"show": 2
|
23280
23294
|
},
|
23281
23295
|
"Emacs Lisp": {
|
23282
|
-
"
|
23296
|
+
";": 353,
|
23297
|
+
"-": 469,
|
23298
|
+
"*": 3,
|
23299
|
+
"mode": 13,
|
23300
|
+
"emacs": 3,
|
23301
|
+
"lisp": 1,
|
23302
|
+
"coding": 2,
|
23303
|
+
"mule": 1,
|
23304
|
+
"Desktop": 2,
|
23305
|
+
"File": 1,
|
23306
|
+
"for": 9,
|
23307
|
+
"Emacs": 2,
|
23308
|
+
"Created": 2,
|
23309
|
+
"Sat": 1,
|
23310
|
+
"Jan": 1,
|
23311
|
+
"file": 15,
|
23312
|
+
"format": 4,
|
23313
|
+
"version": 4,
|
23314
|
+
"Global": 1,
|
23315
|
+
"section": 2,
|
23316
|
+
"(": 167,
|
23317
|
+
"setq": 9,
|
23318
|
+
"desktop": 2,
|
23319
|
+
"missing": 1,
|
23320
|
+
"warning": 1,
|
23321
|
+
"nil": 22,
|
23322
|
+
")": 155,
|
23323
|
+
"tags": 2,
|
23324
|
+
"name": 10,
|
23325
|
+
"table": 10,
|
23326
|
+
"list": 5,
|
23327
|
+
"search": 3,
|
23328
|
+
"ring": 2,
|
23329
|
+
"regexp": 7,
|
23330
|
+
"register": 1,
|
23331
|
+
"alist": 10,
|
23332
|
+
"history": 1,
|
23333
|
+
"Buffer": 1,
|
23334
|
+
"buffers": 1,
|
23335
|
+
"listed": 1,
|
23336
|
+
"in": 5,
|
23337
|
+
"same": 1,
|
23338
|
+
"order": 1,
|
23339
|
+
"as": 2,
|
23340
|
+
"buffer": 6,
|
23341
|
+
"create": 1,
|
23342
|
+
"system": 1,
|
23343
|
+
".": 41,
|
23344
|
+
"undecided": 1,
|
23345
|
+
"unix": 1,
|
23283
23346
|
"print": 1,
|
23284
|
-
")": 144,
|
23285
|
-
";": 333,
|
23286
23347
|
"ess": 48,
|
23287
|
-
"-": 294,
|
23288
23348
|
"julia.el": 2,
|
23289
23349
|
"ESS": 5,
|
23290
23350
|
"julia": 39,
|
23291
|
-
"mode": 12,
|
23292
23351
|
"and": 3,
|
23293
23352
|
"inferior": 13,
|
23294
23353
|
"interaction": 1,
|
@@ -23306,10 +23365,8 @@
|
|
23306
23365
|
"lang": 1,
|
23307
23366
|
"project": 1,
|
23308
23367
|
"Maintainer": 1,
|
23309
|
-
"Created": 1,
|
23310
23368
|
"Keywords": 1,
|
23311
23369
|
"This": 4,
|
23312
|
-
"file": 10,
|
23313
23370
|
"is": 5,
|
23314
23371
|
"*NOT*": 1,
|
23315
23372
|
"part": 2,
|
@@ -23331,19 +23388,16 @@
|
|
23331
23388
|
"General": 3,
|
23332
23389
|
"Public": 3,
|
23333
23390
|
"License": 3,
|
23334
|
-
"as": 1,
|
23335
23391
|
"published": 1,
|
23336
23392
|
"by": 1,
|
23337
23393
|
"Free": 2,
|
23338
23394
|
"Software": 2,
|
23339
23395
|
"Foundation": 2,
|
23340
23396
|
"either": 1,
|
23341
|
-
"version": 2,
|
23342
23397
|
"any": 1,
|
23343
23398
|
"later": 1,
|
23344
23399
|
"version.": 1,
|
23345
23400
|
"distributed": 1,
|
23346
|
-
"in": 3,
|
23347
23401
|
"hope": 1,
|
23348
23402
|
"that": 2,
|
23349
23403
|
"will": 1,
|
@@ -23365,7 +23419,6 @@
|
|
23365
23419
|
"PARTICULAR": 1,
|
23366
23420
|
"PURPOSE.": 1,
|
23367
23421
|
"See": 1,
|
23368
|
-
"for": 8,
|
23369
23422
|
"more": 1,
|
23370
23423
|
"details.": 1,
|
23371
23424
|
"You": 1,
|
@@ -23393,7 +23446,6 @@
|
|
23393
23446
|
"USA.": 1,
|
23394
23447
|
"Commentary": 1,
|
23395
23448
|
"customise": 1,
|
23396
|
-
"name": 8,
|
23397
23449
|
"point": 6,
|
23398
23450
|
"your": 1,
|
23399
23451
|
"release": 1,
|
@@ -23404,14 +23456,11 @@
|
|
23404
23456
|
"julia.": 2,
|
23405
23457
|
"require": 2,
|
23406
23458
|
"auto": 1,
|
23407
|
-
"alist": 9,
|
23408
|
-
"table": 9,
|
23409
23459
|
"character": 1,
|
23410
23460
|
"quote": 2,
|
23411
23461
|
"transpose": 1,
|
23412
23462
|
"syntax": 7,
|
23413
23463
|
"entry": 4,
|
23414
|
-
".": 40,
|
23415
23464
|
"Syntax": 3,
|
23416
23465
|
"inside": 1,
|
23417
23466
|
"char": 6,
|
@@ -23423,11 +23472,9 @@
|
|
23423
23472
|
"unquote": 1,
|
23424
23473
|
"forloop": 1,
|
23425
23474
|
"subset": 2,
|
23426
|
-
"regexp": 6,
|
23427
23475
|
"font": 6,
|
23428
23476
|
"lock": 6,
|
23429
23477
|
"defaults": 2,
|
23430
|
-
"list": 3,
|
23431
23478
|
"identity": 1,
|
23432
23479
|
"keyword": 2,
|
23433
23480
|
"face": 4,
|
@@ -23463,7 +23510,6 @@
|
|
23463
23510
|
"ignored": 1,
|
23464
23511
|
"local": 6,
|
23465
23512
|
"process": 5,
|
23466
|
-
"nil": 12,
|
23467
23513
|
"dump": 2,
|
23468
23514
|
"files": 1,
|
23469
23515
|
"_": 1,
|
@@ -23475,7 +23521,6 @@
|
|
23475
23521
|
"directory": 2,
|
23476
23522
|
"temp": 2,
|
23477
23523
|
"insert": 1,
|
23478
|
-
"format": 3,
|
23479
23524
|
"load": 1,
|
23480
23525
|
"command": 5,
|
23481
23526
|
"get": 3,
|
@@ -23493,7 +23538,6 @@
|
|
23493
23538
|
"[": 3,
|
23494
23539
|
"n": 1,
|
23495
23540
|
"]": 3,
|
23496
|
-
"*": 1,
|
23497
23541
|
"at": 5,
|
23498
23542
|
".*": 2,
|
23499
23543
|
"+": 5,
|
@@ -23523,9 +23567,7 @@
|
|
23523
23567
|
"group": 1,
|
23524
23568
|
"###autoload": 2,
|
23525
23569
|
"interactive": 2,
|
23526
|
-
"setq": 2,
|
23527
23570
|
"customize": 5,
|
23528
|
-
"emacs": 1,
|
23529
23571
|
"<": 1,
|
23530
23572
|
"hook": 4,
|
23531
23573
|
"complete": 1,
|
@@ -23545,7 +23587,6 @@
|
|
23545
23587
|
"notably": 1,
|
23546
23588
|
"null": 1,
|
23547
23589
|
"dribble": 1,
|
23548
|
-
"buffer": 3,
|
23549
23590
|
"debugging": 1,
|
23550
23591
|
"only": 1,
|
23551
23592
|
"dialect": 1,
|
@@ -23565,7 +23606,6 @@
|
|
23565
23606
|
"goto": 2,
|
23566
23607
|
"min": 1,
|
23567
23608
|
"while": 1,
|
23568
|
-
"search": 1,
|
23569
23609
|
"forward": 1,
|
23570
23610
|
"replace": 1,
|
23571
23611
|
"match": 1,
|
@@ -26203,6 +26243,206 @@
|
|
26203
26243
|
"offtext": 1
|
26204
26244
|
},
|
26205
26245
|
"GAP": {
|
26246
|
+
"gap": 133,
|
26247
|
+
"START_TEST": 2,
|
26248
|
+
"(": 795,
|
26249
|
+
")": 796,
|
26250
|
+
";": 650,
|
26251
|
+
"#": 100,
|
26252
|
+
"The": 32,
|
26253
|
+
"following": 8,
|
26254
|
+
"used": 19,
|
26255
|
+
"to": 47,
|
26256
|
+
"trigger": 9,
|
26257
|
+
"an": 24,
|
26258
|
+
"error": 8,
|
26259
|
+
"starting": 1,
|
26260
|
+
"with": 54,
|
26261
|
+
"K": 16,
|
26262
|
+
"AbelianPcpGroup": 3,
|
26263
|
+
"[": 232,
|
26264
|
+
"]": 256,
|
26265
|
+
"A": 17,
|
26266
|
+
"Subgroup": 11,
|
26267
|
+
"K.1": 5,
|
26268
|
+
"cr": 2,
|
26269
|
+
"CRRecordBySubgroup": 1,
|
26270
|
+
"ExtensionsCR": 1,
|
26271
|
+
"hom1": 3,
|
26272
|
+
"GroupHomomorphismByImages": 4,
|
26273
|
+
"hom2": 3,
|
26274
|
+
"true": 28,
|
26275
|
+
"IdentityMapping": 2,
|
26276
|
+
"incorrectly": 1,
|
26277
|
+
"triggered": 1,
|
26278
|
+
"at": 1,
|
26279
|
+
"some": 3,
|
26280
|
+
"point": 1,
|
26281
|
+
"IsTorsionFree": 1,
|
26282
|
+
"ExamplesOfSomePcpGroups": 2,
|
26283
|
+
"Verify": 1,
|
26284
|
+
"IsGeneratorsOfMagmaWithInverses": 2,
|
26285
|
+
"warnings": 1,
|
26286
|
+
"are": 15,
|
26287
|
+
"silenced": 1,
|
26288
|
+
"GeneratorsOfGroup": 1,
|
26289
|
+
"Check": 6,
|
26290
|
+
"for": 61,
|
26291
|
+
"a": 117,
|
26292
|
+
"bug": 6,
|
26293
|
+
"reported": 2,
|
26294
|
+
"-": 137,
|
26295
|
+
"by": 21,
|
26296
|
+
"Robert": 2,
|
26297
|
+
"Morse": 2,
|
26298
|
+
"g": 3,
|
26299
|
+
"PcGroupToPcpGroup": 2,
|
26300
|
+
"SmallGroup": 2,
|
26301
|
+
"Pcp": 28,
|
26302
|
+
"group": 32,
|
26303
|
+
"orders": 28,
|
26304
|
+
"next": 11,
|
26305
|
+
"two": 15,
|
26306
|
+
"commands": 1,
|
26307
|
+
"errors": 1,
|
26308
|
+
"NonAbelianTensorSquare": 2,
|
26309
|
+
"Centre": 2,
|
26310
|
+
"NonAbelianExteriorSquare": 1,
|
26311
|
+
"F": 62,
|
26312
|
+
"FreeGroup": 1,
|
26313
|
+
"<free>": 1,
|
26314
|
+
"on": 7,
|
26315
|
+
"the": 142,
|
26316
|
+
"generators": 18,
|
26317
|
+
"x": 19,
|
26318
|
+
"y": 14,
|
26319
|
+
"F.1": 1,
|
26320
|
+
"F.2": 1,
|
26321
|
+
"G": 24,
|
26322
|
+
"F/": 1,
|
26323
|
+
"/y": 1,
|
26324
|
+
"x/y": 1,
|
26325
|
+
"<fp>": 1,
|
26326
|
+
"iso": 2,
|
26327
|
+
"IsomorphismPcGroup": 1,
|
26328
|
+
"f1": 2,
|
26329
|
+
"f2*f5": 1,
|
26330
|
+
"iso1": 1,
|
26331
|
+
"IsomorphismPcpGroup": 1,
|
26332
|
+
"Image": 3,
|
26333
|
+
"f2": 1,
|
26334
|
+
"f3": 1,
|
26335
|
+
"f4": 1,
|
26336
|
+
"f5": 1,
|
26337
|
+
"g1": 2,
|
26338
|
+
"g2": 1,
|
26339
|
+
"g3": 1,
|
26340
|
+
"g4": 1,
|
26341
|
+
"g5": 2,
|
26342
|
+
"iso*iso1": 2,
|
26343
|
+
"command": 4,
|
26344
|
+
"problem": 2,
|
26345
|
+
"previous": 1,
|
26346
|
+
"example": 5,
|
26347
|
+
"is/was": 1,
|
26348
|
+
"that": 42,
|
26349
|
+
"Igs": 3,
|
26350
|
+
"is": 74,
|
26351
|
+
"set": 7,
|
26352
|
+
"non": 6,
|
26353
|
+
"standard": 1,
|
26354
|
+
"value": 10,
|
26355
|
+
"g2*g5": 1,
|
26356
|
+
"g3*g4*g5": 1,
|
26357
|
+
"g4*g5": 1,
|
26358
|
+
"Unfortunately": 1,
|
26359
|
+
"it": 9,
|
26360
|
+
"seems": 2,
|
26361
|
+
"lot": 1,
|
26362
|
+
"of": 120,
|
26363
|
+
"code": 3,
|
26364
|
+
"really": 5,
|
26365
|
+
"should": 3,
|
26366
|
+
"be": 25,
|
26367
|
+
"using": 4,
|
26368
|
+
"Ngs": 1,
|
26369
|
+
"or": 14,
|
26370
|
+
"Cgs": 1,
|
26371
|
+
"incorrectly.": 1,
|
26372
|
+
"For": 11,
|
26373
|
+
"direct": 1,
|
26374
|
+
"products": 1,
|
26375
|
+
"could": 1,
|
26376
|
+
"return": 42,
|
26377
|
+
"*invalid*": 1,
|
26378
|
+
"embeddings": 1,
|
26379
|
+
"D": 39,
|
26380
|
+
"DirectProduct": 1,
|
26381
|
+
"hom": 8,
|
26382
|
+
"Embedding": 1,
|
26383
|
+
"mapi": 6,
|
26384
|
+
"MappingGeneratorsImages": 2,
|
26385
|
+
"Source": 3,
|
26386
|
+
"Range": 3,
|
26387
|
+
"<": 19,
|
26388
|
+
"fail": 20,
|
26389
|
+
"Projection": 1,
|
26390
|
+
"computing": 4,
|
26391
|
+
"Schur": 3,
|
26392
|
+
"extension": 4,
|
26393
|
+
"infinite": 2,
|
26394
|
+
"cyclic": 1,
|
26395
|
+
"groups": 2,
|
26396
|
+
"found": 5,
|
26397
|
+
"Max": 3,
|
26398
|
+
"Horn": 3,
|
26399
|
+
"SchurExtension": 3,
|
26400
|
+
"extensions": 3,
|
26401
|
+
"subgroups": 3,
|
26402
|
+
"MH": 3,
|
26403
|
+
"HeisenbergPcpGroup": 4,
|
26404
|
+
"H": 6,
|
26405
|
+
"G.2": 4,
|
26406
|
+
"*G.3": 1,
|
26407
|
+
"G.1": 4,
|
26408
|
+
"normalizer": 1,
|
26409
|
+
"was": 3,
|
26410
|
+
"caused": 1,
|
26411
|
+
"incorrect": 1,
|
26412
|
+
"resp.": 1,
|
26413
|
+
"overly": 1,
|
26414
|
+
"restrictive": 1,
|
26415
|
+
"use": 6,
|
26416
|
+
"Parent": 5,
|
26417
|
+
".": 258,
|
26418
|
+
"G.3": 4,
|
26419
|
+
"G.4": 6,
|
26420
|
+
"G.5": 4,
|
26421
|
+
"B": 22,
|
26422
|
+
"Normalizer": 4,
|
26423
|
+
"In": 4,
|
26424
|
+
"polycyclic": 1,
|
26425
|
+
"and": 103,
|
26426
|
+
"cohomology": 1,
|
26427
|
+
"computations": 1,
|
26428
|
+
"broken.": 1,
|
26429
|
+
"UnitriangularPcpGroup": 1,
|
26430
|
+
"mats": 7,
|
26431
|
+
".mats": 1,
|
26432
|
+
"C": 13,
|
26433
|
+
"CRRecordByMats": 1,
|
26434
|
+
"cc": 1,
|
26435
|
+
"TwoCohomologyCR": 1,
|
26436
|
+
"cc.factor.rels": 1,
|
26437
|
+
"c": 1,
|
26438
|
+
"cc.factor.prei": 1,
|
26439
|
+
"cc.gcb": 1,
|
26440
|
+
"cc.gcc": 1,
|
26441
|
+
"LowerCentralSeriesOfGroup": 2,
|
26442
|
+
"nilpotent": 1,
|
26443
|
+
"pcp": 1,
|
26444
|
+
"recursion": 2,
|
26445
|
+
"STOP_TEST": 2,
|
26206
26446
|
"#############################################################################": 63,
|
26207
26447
|
"##": 766,
|
26208
26448
|
"#W": 4,
|
@@ -26210,17 +26450,12 @@
|
|
26210
26450
|
"This": 10,
|
26211
26451
|
"file": 7,
|
26212
26452
|
"contains": 7,
|
26213
|
-
"a": 113,
|
26214
26453
|
"sample": 2,
|
26215
|
-
"of": 114,
|
26216
26454
|
"GAP": 15,
|
26217
26455
|
"declaration": 1,
|
26218
26456
|
"file.": 3,
|
26219
26457
|
"DeclareProperty": 2,
|
26220
|
-
"(": 721,
|
26221
26458
|
"IsLeftModule": 6,
|
26222
|
-
")": 722,
|
26223
|
-
";": 569,
|
26224
26459
|
"DeclareGlobalFunction": 5,
|
26225
26460
|
"#C": 7,
|
26226
26461
|
"IsQuuxFrobnicator": 1,
|
@@ -26234,27 +26469,21 @@
|
|
26234
26469
|
"Tests": 1,
|
26235
26470
|
"whether": 5,
|
26236
26471
|
"R": 5,
|
26237
|
-
"is": 72,
|
26238
26472
|
"quux": 1,
|
26239
26473
|
"frobnicator.": 1,
|
26240
26474
|
"</Description>": 28,
|
26241
26475
|
"</ManSection>": 28,
|
26242
26476
|
"DeclareSynonym": 17,
|
26243
26477
|
"IsField": 1,
|
26244
|
-
"and": 102,
|
26245
26478
|
"IsGroup": 1,
|
26246
26479
|
"implementation": 1,
|
26247
26480
|
"#M": 20,
|
26248
26481
|
"SomeOperation": 1,
|
26249
26482
|
"<val>": 2,
|
26250
26483
|
"performs": 1,
|
26251
|
-
"some": 2,
|
26252
26484
|
"operation": 1,
|
26253
|
-
"on": 5,
|
26254
26485
|
"InstallMethod": 18,
|
26255
26486
|
"SomeProperty": 1,
|
26256
|
-
"[": 145,
|
26257
|
-
"]": 169,
|
26258
26487
|
"function": 37,
|
26259
26488
|
"M": 7,
|
26260
26489
|
"if": 103,
|
@@ -26262,14 +26491,11 @@
|
|
26262
26491
|
"not": 49,
|
26263
26492
|
"IsTrivial": 1,
|
26264
26493
|
"then": 128,
|
26265
|
-
"return": 41,
|
26266
|
-
"true": 21,
|
26267
26494
|
"fi": 91,
|
26268
26495
|
"TryNextMethod": 7,
|
26269
26496
|
"end": 34,
|
26270
26497
|
"#F": 17,
|
26271
26498
|
"SomeGlobalFunction": 2,
|
26272
|
-
"A": 9,
|
26273
26499
|
"global": 1,
|
26274
26500
|
"variadic": 1,
|
26275
26501
|
"funfion.": 1,
|
@@ -26279,13 +26505,9 @@
|
|
26279
26505
|
"+": 9,
|
26280
26506
|
"*": 12,
|
26281
26507
|
"elif": 21,
|
26282
|
-
"-": 67,
|
26283
26508
|
"else": 25,
|
26284
26509
|
"Error": 7,
|
26285
|
-
"#": 73,
|
26286
26510
|
"SomeFunc": 1,
|
26287
|
-
"x": 14,
|
26288
|
-
"y": 8,
|
26289
26511
|
"local": 16,
|
26290
26512
|
"z": 3,
|
26291
26513
|
"func": 3,
|
@@ -26295,19 +26517,17 @@
|
|
26295
26517
|
"List": 6,
|
26296
26518
|
"while": 5,
|
26297
26519
|
"do": 18,
|
26298
|
-
"for": 53,
|
26299
26520
|
"in": 64,
|
26300
26521
|
"Print": 24,
|
26301
26522
|
"od": 15,
|
26302
26523
|
"repeat": 1,
|
26303
26524
|
"until": 1,
|
26304
|
-
"
|
26525
|
+
"G/H": 1,
|
26526
|
+
"NaturalHomomorphism": 1,
|
26305
26527
|
"Magic.gd": 1,
|
26306
26528
|
"AutoDoc": 4,
|
26307
26529
|
"package": 10,
|
26308
26530
|
"Copyright": 6,
|
26309
|
-
"Max": 2,
|
26310
|
-
"Horn": 2,
|
26311
26531
|
"JLU": 2,
|
26312
26532
|
"Giessen": 2,
|
26313
26533
|
"Sebastian": 2,
|
@@ -26368,7 +26588,6 @@
|
|
26368
26588
|
"TODO": 3,
|
26369
26589
|
"mention": 1,
|
26370
26590
|
"merging": 1,
|
26371
|
-
"with": 24,
|
26372
26591
|
"PackageInfo.AutoDoc": 1,
|
26373
26592
|
"SHEBANG#!#! <List>": 3,
|
26374
26593
|
"SHEBANG#!#! <Item>": 13,
|
@@ -26383,17 +26602,12 @@
|
|
26383
26602
|
"SHEBANG#!#! i.e.": 1,
|
26384
26603
|
"SHEBANG#!#! The": 2,
|
26385
26604
|
"SHEBANG#!#! then": 1,
|
26386
|
-
"The": 21,
|
26387
26605
|
"param": 1,
|
26388
26606
|
"bit": 2,
|
26389
26607
|
"strange.": 1,
|
26390
26608
|
"We": 4,
|
26391
|
-
"should": 2,
|
26392
26609
|
"probably": 2,
|
26393
26610
|
"change": 1,
|
26394
|
-
"it": 8,
|
26395
|
-
"to": 37,
|
26396
|
-
"be": 24,
|
26397
26611
|
"more": 3,
|
26398
26612
|
"general": 1,
|
26399
26613
|
"as": 23,
|
@@ -26403,13 +26617,11 @@
|
|
26403
26617
|
"define": 2,
|
26404
26618
|
"other": 4,
|
26405
26619
|
"entities...": 1,
|
26406
|
-
"For": 10,
|
26407
26620
|
"now": 1,
|
26408
26621
|
"we": 3,
|
26409
26622
|
"document": 1,
|
26410
26623
|
"leave": 1,
|
26411
26624
|
"us": 1,
|
26412
|
-
"the": 136,
|
26413
26625
|
"choice": 1,
|
26414
26626
|
"revising": 1,
|
26415
26627
|
"how": 1,
|
@@ -26422,21 +26634,15 @@
|
|
26422
26634
|
"<Item>": 2,
|
26423
26635
|
"list": 16,
|
26424
26636
|
"names": 1,
|
26425
|
-
"or": 13,
|
26426
26637
|
"which": 8,
|
26427
|
-
"are": 14,
|
26428
|
-
"used": 10,
|
26429
26638
|
"corresponding": 1,
|
26430
26639
|
"XML": 4,
|
26431
26640
|
"entities.": 1,
|
26432
|
-
"example": 3,
|
26433
|
-
"set": 6,
|
26434
26641
|
"containing": 1,
|
26435
26642
|
"string": 6,
|
26436
26643
|
"<Q>": 2,
|
26437
26644
|
"SomePackage": 3,
|
26438
26645
|
"</Q>": 2,
|
26439
|
-
"following": 4,
|
26440
26646
|
"added": 1,
|
26441
26647
|
"preamble": 1,
|
26442
26648
|
"<Listing>": 2,
|
@@ -26451,7 +26657,6 @@
|
|
26451
26657
|
"your": 1,
|
26452
26658
|
"documentation": 2,
|
26453
26659
|
"reference": 1,
|
26454
|
-
"that": 39,
|
26455
26660
|
"package.": 2,
|
26456
26661
|
"If": 11,
|
26457
26662
|
"another": 1,
|
@@ -26462,7 +26667,6 @@
|
|
26462
26667
|
"simply": 2,
|
26463
26668
|
"add": 2,
|
26464
26669
|
"instead": 1,
|
26465
|
-
"two": 13,
|
26466
26670
|
"entry": 2,
|
26467
26671
|
"list.": 2,
|
26468
26672
|
"It": 1,
|
@@ -26510,9 +26714,7 @@
|
|
26510
26714
|
"syntax": 1,
|
26511
26715
|
"only": 5,
|
26512
26716
|
"remaining": 1,
|
26513
|
-
"use": 5,
|
26514
26717
|
"this": 15,
|
26515
|
-
"seems": 1,
|
26516
26718
|
"ability": 1,
|
26517
26719
|
"specify": 3,
|
26518
26720
|
"order": 1,
|
@@ -26528,7 +26730,6 @@
|
|
26528
26730
|
"uses": 2,
|
26529
26731
|
"scaffolding": 2,
|
26530
26732
|
"mechanism": 4,
|
26531
|
-
"really": 4,
|
26532
26733
|
"necessary": 2,
|
26533
26734
|
"custom": 1,
|
26534
26735
|
"name": 2,
|
@@ -26540,7 +26741,6 @@
|
|
26540
26741
|
"packages": 5,
|
26541
26742
|
"have": 3,
|
26542
26743
|
"existing": 1,
|
26543
|
-
"using": 2,
|
26544
26744
|
"different": 2,
|
26545
26745
|
"wish": 1,
|
26546
26746
|
"scaffolding.": 1,
|
@@ -26549,7 +26749,6 @@
|
|
26549
26749
|
"allow": 1,
|
26550
26750
|
"specifying": 1,
|
26551
26751
|
"gapdoc.main.": 1,
|
26552
|
-
"code": 1,
|
26553
26752
|
"still": 1,
|
26554
26753
|
"honor": 1,
|
26555
26754
|
"though": 1,
|
@@ -26588,13 +26787,11 @@
|
|
26588
26787
|
"CreateDir": 2,
|
26589
26788
|
"currently": 1,
|
26590
26789
|
"undocumented": 1,
|
26591
|
-
"fail": 18,
|
26592
26790
|
"LastSystemError": 1,
|
26593
26791
|
".message": 1,
|
26594
26792
|
"false": 7,
|
26595
26793
|
"pkg": 32,
|
26596
26794
|
"subdirs": 2,
|
26597
|
-
"extensions": 1,
|
26598
26795
|
"d_rel": 6,
|
26599
26796
|
"files": 4,
|
26600
26797
|
"result": 9,
|
@@ -26758,11 +26955,9 @@
|
|
26758
26955
|
"You": 1,
|
26759
26956
|
"must": 6,
|
26760
26957
|
"provide": 2,
|
26761
|
-
"next": 6,
|
26762
26958
|
"entries": 8,
|
26763
26959
|
"status": 1,
|
26764
26960
|
"because": 2,
|
26765
|
-
"was": 1,
|
26766
26961
|
"#CommunicatedBy": 1,
|
26767
26962
|
"#AcceptDate": 1,
|
26768
26963
|
"PackageWWWHome": 1,
|
@@ -26781,7 +26976,6 @@
|
|
26781
26976
|
"overview": 1,
|
26782
26977
|
"Web": 1,
|
26783
26978
|
"page": 1,
|
26784
|
-
"an": 17,
|
26785
26979
|
"URL": 1,
|
26786
26980
|
"Webpage": 1,
|
26787
26981
|
"detailed": 1,
|
@@ -26831,9 +27025,7 @@
|
|
26831
27025
|
"Thomas": 2,
|
26832
27026
|
"Breuer": 2,
|
26833
27027
|
"#Y": 6,
|
26834
|
-
"C": 11,
|
26835
27028
|
"Lehrstuhl": 2,
|
26836
|
-
"D": 36,
|
26837
27029
|
"r": 2,
|
26838
27030
|
"Mathematik": 2,
|
26839
27031
|
"RWTH": 2,
|
@@ -26855,10 +27047,8 @@
|
|
26855
27047
|
"free": 3,
|
26856
27048
|
"left": 15,
|
26857
27049
|
"modules": 1,
|
26858
|
-
"found": 1,
|
26859
27050
|
"<F>": 10,
|
26860
27051
|
"lib/basis.gd": 1,
|
26861
|
-
".": 257,
|
26862
27052
|
"IsLeftOperatorRing": 1,
|
26863
27053
|
"IsLeftOperatorAdditiveGroup": 2,
|
26864
27054
|
"IsRing": 1,
|
@@ -26888,11 +27078,9 @@
|
|
26888
27078
|
"Whenever": 1,
|
26889
27079
|
"talk": 1,
|
26890
27080
|
"<M>": 42,
|
26891
|
-
"F": 61,
|
26892
27081
|
"</M>": 41,
|
26893
27082
|
"V": 152,
|
26894
27083
|
"additive": 1,
|
26895
|
-
"group": 2,
|
26896
27084
|
"acts": 1,
|
26897
27085
|
"via": 6,
|
26898
27086
|
"multiplication": 1,
|
@@ -26903,7 +27091,6 @@
|
|
26903
27091
|
"right": 2,
|
26904
27092
|
"distributive.": 1,
|
26905
27093
|
"accessed": 1,
|
26906
|
-
"value": 9,
|
26907
27094
|
"attribute": 2,
|
26908
27095
|
"Vector": 1,
|
26909
27096
|
"spaces": 15,
|
@@ -26926,7 +27113,6 @@
|
|
26926
27113
|
"matrices": 5,
|
26927
27114
|
"respectively": 1,
|
26928
27115
|
"contained": 4,
|
26929
|
-
"In": 3,
|
26930
27116
|
"case": 2,
|
26931
27117
|
"called": 1,
|
26932
27118
|
"Gaussian": 19,
|
@@ -26938,13 +27124,10 @@
|
|
26938
27124
|
"generators.": 1,
|
26939
27125
|
"<Example>": 12,
|
26940
27126
|
"<![CDATA[>": 12,
|
26941
|
-
"gap": 41,
|
26942
|
-
"mats": 5,
|
26943
27127
|
"VectorSpace": 13,
|
26944
27128
|
"Rationals": 13,
|
26945
27129
|
"E": 2,
|
26946
27130
|
"element": 2,
|
26947
|
-
"extension": 3,
|
26948
27131
|
"Field": 1,
|
26949
27132
|
"</Example>": 12,
|
26950
27133
|
"DeclareFilter": 1,
|
@@ -26997,7 +27180,6 @@
|
|
26997
27180
|
"its": 2,
|
26998
27181
|
"uniquely": 1,
|
26999
27182
|
"determined": 1,
|
27000
|
-
"by": 14,
|
27001
27183
|
"exist": 1,
|
27002
27184
|
"same": 6,
|
27003
27185
|
"acting": 8,
|
@@ -27026,10 +27208,8 @@
|
|
27026
27208
|
"CANONICAL_BASIS_FLAGS": 1,
|
27027
27209
|
"</C>": 9,
|
27028
27210
|
"vecs": 4,
|
27029
|
-
"B": 16,
|
27030
27211
|
"<vector>": 8,
|
27031
27212
|
"3": 5,
|
27032
|
-
"generators": 16,
|
27033
27213
|
"BasisVectors": 4,
|
27034
27214
|
"DeclareAttribute": 4,
|
27035
27215
|
"IsRowSpace": 2,
|
@@ -27041,7 +27221,6 @@
|
|
27041
27221
|
"vectors.": 2,
|
27042
27222
|
"calculations.": 2,
|
27043
27223
|
"Otherwise": 3,
|
27044
|
-
"non": 4,
|
27045
27224
|
"Gaussian.": 2,
|
27046
27225
|
"need": 3,
|
27047
27226
|
"flag": 2,
|
@@ -27056,7 +27235,6 @@
|
|
27056
27235
|
"nice": 4,
|
27057
27236
|
"way.": 2,
|
27058
27237
|
"Let": 4,
|
27059
|
-
"K": 4,
|
27060
27238
|
"spanned": 4,
|
27061
27239
|
"Then": 1,
|
27062
27240
|
"/": 12,
|
@@ -27152,7 +27330,6 @@
|
|
27152
27330
|
"U": 12,
|
27153
27331
|
"collection.": 1,
|
27154
27332
|
"/2": 4,
|
27155
|
-
"Parent": 4,
|
27156
27333
|
"DeclareOperation": 2,
|
27157
27334
|
"IsCollection": 3,
|
27158
27335
|
"Intersection2Spaces": 4,
|
@@ -27324,7 +27501,6 @@
|
|
27324
27501
|
"q": 20,
|
27325
27502
|
"prod_": 2,
|
27326
27503
|
"frac": 3,
|
27327
|
-
"recursion": 1,
|
27328
27504
|
"sum_": 1,
|
27329
27505
|
"size": 12,
|
27330
27506
|
"qn": 10,
|
@@ -27354,8 +27530,6 @@
|
|
27354
27530
|
"FamilyObj": 2,
|
27355
27531
|
"map": 4,
|
27356
27532
|
"S": 4,
|
27357
|
-
"Source": 1,
|
27358
|
-
"Range": 1,
|
27359
27533
|
"IsLinearMapping": 1
|
27360
27534
|
},
|
27361
27535
|
"GAS": {
|
@@ -46033,25 +46207,171 @@
|
|
46033
46207
|
"bazCompo": 1
|
46034
46208
|
},
|
46035
46209
|
"Mathematica": {
|
46210
|
+
"BeginPackage": 2,
|
46211
|
+
"[": 472,
|
46212
|
+
"]": 451,
|
46213
|
+
"HeyexEyePosition": 2,
|
46214
|
+
"usage": 23,
|
46215
|
+
";": 117,
|
46216
|
+
"HeyexImport": 2,
|
46217
|
+
"wrongHdr": 2,
|
46218
|
+
"Begin": 3,
|
46219
|
+
"ImportExport": 1,
|
46220
|
+
"RegisterImport": 1,
|
46221
|
+
"{": 320,
|
46222
|
+
"importHeader": 3,
|
46223
|
+
"n_Integer": 7,
|
46224
|
+
"}": 315,
|
46225
|
+
"(": 27,
|
46226
|
+
"importData": 7,
|
46227
|
+
"n": 21,
|
46228
|
+
"##": 3,
|
46229
|
+
"&": 12,
|
46230
|
+
")": 26,
|
46231
|
+
"importImages": 4,
|
46232
|
+
"importSLOImage": 2,
|
46233
|
+
"importSegmentation": 4,
|
46234
|
+
"importDataSize": 2,
|
46235
|
+
"Image3D": 1,
|
46236
|
+
"/.": 32,
|
46237
|
+
"#1": 1,
|
46238
|
+
"-": 179,
|
46239
|
+
"If": 4,
|
46240
|
+
"Quiet": 2,
|
46241
|
+
"Check": 2,
|
46242
|
+
"TrueQ": 6,
|
46243
|
+
"Compile": 2,
|
46244
|
+
"CompilationTarget": 3,
|
46245
|
+
"False": 21,
|
46246
|
+
"compileTarget": 5,
|
46247
|
+
"read": 10,
|
46248
|
+
"id_String": 3,
|
46249
|
+
"type_String": 3,
|
46250
|
+
"str_": 4,
|
46251
|
+
"id": 3,
|
46252
|
+
"BinaryRead": 2,
|
46253
|
+
"str": 52,
|
46254
|
+
"type": 3,
|
46255
|
+
"BinaryReadList": 3,
|
46256
|
+
"StringJoin": 1,
|
46257
|
+
"FromCharacterCode": 1,
|
46258
|
+
"/@": 8,
|
46259
|
+
"Rest": 1,
|
46260
|
+
"NestList": 1,
|
46261
|
+
"Null": 1,
|
46262
|
+
"chars___Integer": 1,
|
46263
|
+
"Longest": 1,
|
46264
|
+
"...": 1,
|
46265
|
+
"chars": 1,
|
46266
|
+
"With": 3,
|
46267
|
+
"i": 22,
|
46268
|
+
"f": 4,
|
46269
|
+
"d": 18,
|
46270
|
+
"b": 14,
|
46271
|
+
"fileHeaderInfo": 2,
|
46272
|
+
"Transpose": 5,
|
46273
|
+
"bScanHeaderInfo": 1,
|
46274
|
+
"isHeyexRawFormat": 3,
|
46275
|
+
"version_String": 1,
|
46276
|
+
"_Integer": 2,
|
46277
|
+
"_Rule..": 1,
|
46278
|
+
"/": 3,
|
46279
|
+
"StringMatchQ": 1,
|
46280
|
+
"version": 1,
|
46281
|
+
"__": 1,
|
46282
|
+
"True": 15,
|
46283
|
+
"___": 10,
|
46284
|
+
"readFileHeader": 8,
|
46285
|
+
"str_InputStream": 8,
|
46286
|
+
"hdr": 3,
|
46287
|
+
"#": 7,
|
46288
|
+
"Message": 1,
|
46289
|
+
"Throw": 1,
|
46290
|
+
"Failed": 3,
|
46291
|
+
"readSLOImage": 2,
|
46292
|
+
"fileHdr": 17,
|
46293
|
+
"_String": 7,
|
46294
|
+
"_": 8,
|
46295
|
+
"..": 7,
|
46296
|
+
"Image": 3,
|
46297
|
+
"Partition": 6,
|
46298
|
+
"*": 33,
|
46299
|
+
"skipSLOImage": 5,
|
46300
|
+
"Skip": 5,
|
46301
|
+
"readBScanHeader": 2,
|
46302
|
+
"Module": 13,
|
46303
|
+
"bScanHdr": 6,
|
46304
|
+
"AppendTo": 2,
|
46305
|
+
"None": 9,
|
46306
|
+
"skipBScanHeader": 3,
|
46307
|
+
"readBScanData": 1,
|
46308
|
+
"Developer": 3,
|
46309
|
+
"ToPackedArray": 3,
|
46310
|
+
"skipBScanData": 2,
|
46311
|
+
"skipBScanBlocks": 3,
|
46312
|
+
"+": 4,
|
46313
|
+
"filename_String": 9,
|
46314
|
+
"header": 35,
|
46315
|
+
"OpenRead": 6,
|
46316
|
+
"filename": 9,
|
46317
|
+
"BinaryFormat": 6,
|
46318
|
+
"Close": 6,
|
46319
|
+
"r___": 1,
|
46320
|
+
"slo": 3,
|
46321
|
+
"nx": 10,
|
46322
|
+
"data": 15,
|
46323
|
+
"Table": 2,
|
46324
|
+
"num_Integer": 2,
|
46325
|
+
"Max": 3,
|
46326
|
+
"Min": 3,
|
46327
|
+
"num": 4,
|
46328
|
+
"adjustGraylevelFunc": 4,
|
46329
|
+
"values": 2,
|
46330
|
+
"_Real": 1,
|
46331
|
+
"Map": 1,
|
46332
|
+
"Floor": 1,
|
46333
|
+
"RuntimeAttributes": 1,
|
46334
|
+
"Listable": 1,
|
46335
|
+
"Parallelization": 1,
|
46336
|
+
"RuntimeOptions": 1,
|
46337
|
+
"imageNumber_Integer": 1,
|
46338
|
+
"imageNumber": 3,
|
46339
|
+
"@@": 3,
|
46340
|
+
"bScanHeader": 3,
|
46341
|
+
"t": 2,
|
46342
|
+
"Timing@readBScanHeader": 1,
|
46343
|
+
"Function": 1,
|
46344
|
+
"bhdr": 9,
|
46345
|
+
"Block": 2,
|
46346
|
+
"numVecs": 6,
|
46347
|
+
"vecNames": 6,
|
46348
|
+
"Take": 2,
|
46349
|
+
"vec_": 2,
|
46350
|
+
"Sequence": 2,
|
46351
|
+
"Rule": 2,
|
46352
|
+
"@@@": 2,
|
46353
|
+
"vec": 2,
|
46354
|
+
"file_String": 1,
|
46355
|
+
"FileExistsQ": 1,
|
46356
|
+
"file": 2,
|
46357
|
+
"position": 3,
|
46358
|
+
"Import": 1,
|
46359
|
+
"Switch": 1,
|
46360
|
+
"Right": 1,
|
46361
|
+
"Left": 2,
|
46362
|
+
"End": 3,
|
46363
|
+
"EndPackage": 2,
|
46036
46364
|
"Get": 1,
|
46037
|
-
"[": 307,
|
46038
|
-
"]": 286,
|
46039
46365
|
"Notebook": 2,
|
46040
|
-
"{": 227,
|
46041
46366
|
"Cell": 28,
|
46042
46367
|
"CellGroupData": 8,
|
46043
46368
|
"BoxData": 19,
|
46044
46369
|
"RowBox": 34,
|
46045
|
-
"}": 222,
|
46046
46370
|
"CellChangeTimes": 13,
|
46047
|
-
"-": 134,
|
46048
|
-
"*": 19,
|
46049
46371
|
"SuperscriptBox": 1,
|
46050
46372
|
"MultilineFunction": 1,
|
46051
|
-
"None": 8,
|
46052
46373
|
"Open": 7,
|
46053
46374
|
"NumberMarks": 3,
|
46054
|
-
"False": 19,
|
46055
46375
|
"GraphicsBox": 2,
|
46056
46376
|
"Hue": 5,
|
46057
46377
|
"LineBox": 5,
|
@@ -46059,10 +46379,7 @@
|
|
46059
46379
|
"AspectRatio": 1,
|
46060
46380
|
"NCache": 1,
|
46061
46381
|
"GoldenRatio": 1,
|
46062
|
-
"(": 2,
|
46063
|
-
")": 1,
|
46064
46382
|
"Axes": 1,
|
46065
|
-
"True": 7,
|
46066
46383
|
"AxesLabel": 1,
|
46067
46384
|
"AxesOrigin": 1,
|
46068
46385
|
"Method": 2,
|
@@ -46106,7 +46423,6 @@
|
|
46106
46423
|
"GridBoxDividers": 1,
|
46107
46424
|
"GridBoxSpacings": 2,
|
46108
46425
|
"GridBoxAlignment": 1,
|
46109
|
-
"Left": 1,
|
46110
46426
|
"Baseline": 1,
|
46111
46427
|
"AllowScriptLevelChange": 2,
|
46112
46428
|
"BaselinePosition": 2,
|
@@ -46114,9 +46430,7 @@
|
|
46114
46430
|
"AbsoluteThickness": 3,
|
46115
46431
|
"TraditionalForm": 3,
|
46116
46432
|
"PolynomialForm": 1,
|
46117
|
-
"#": 2,
|
46118
46433
|
"TraditionalOrder": 1,
|
46119
|
-
"&": 2,
|
46120
46434
|
"pod2": 1,
|
46121
46435
|
"LinebreakAdjustments": 2,
|
46122
46436
|
"FontFamily": 1,
|
@@ -46168,18 +46482,12 @@
|
|
46168
46482
|
"Extensions": 1,
|
46169
46483
|
"Language": 1,
|
46170
46484
|
"MainPage": 1,
|
46171
|
-
"BeginPackage": 1,
|
46172
|
-
";": 42,
|
46173
46485
|
"PossiblyTrueQ": 3,
|
46174
|
-
"usage": 22,
|
46175
46486
|
"PossiblyFalseQ": 2,
|
46176
46487
|
"PossiblyNonzeroQ": 3,
|
46177
|
-
"Begin": 2,
|
46178
46488
|
"expr_": 4,
|
46179
46489
|
"Not": 6,
|
46180
|
-
"TrueQ": 4,
|
46181
46490
|
"expr": 4,
|
46182
|
-
"End": 2,
|
46183
46491
|
"AnyQ": 3,
|
46184
46492
|
"AnyElementQ": 4,
|
46185
46493
|
"AllQ": 2,
|
@@ -46204,14 +46512,12 @@
|
|
46204
46512
|
"Fold": 3,
|
46205
46513
|
"Or": 1,
|
46206
46514
|
"cond": 4,
|
46207
|
-
"/@": 3,
|
46208
46515
|
"L": 4,
|
46209
46516
|
"Flatten": 1,
|
46210
46517
|
"And": 4,
|
46211
46518
|
"SHEBANG#!#!=": 1,
|
46212
46519
|
"n_": 5,
|
46213
46520
|
"Im": 1,
|
46214
|
-
"n": 8,
|
46215
46521
|
"Positive": 2,
|
46216
46522
|
"IntegerQ": 3,
|
46217
46523
|
"&&": 4,
|
@@ -46226,14 +46532,10 @@
|
|
46226
46532
|
"a": 3,
|
46227
46533
|
"Symbol": 2,
|
46228
46534
|
"NumericQ": 1,
|
46229
|
-
"EndPackage": 1,
|
46230
46535
|
"Do": 1,
|
46231
|
-
"If": 1,
|
46232
46536
|
"Length": 1,
|
46233
46537
|
"Divisors": 1,
|
46234
46538
|
"Binomial": 2,
|
46235
|
-
"i": 3,
|
46236
|
-
"+": 2,
|
46237
46539
|
"Print": 1,
|
46238
46540
|
"Break": 1
|
46239
46541
|
},
|
@@ -47758,11 +48060,11 @@
|
|
47758
48060
|
"//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1
|
47759
48061
|
},
|
47760
48062
|
"Mercury": {
|
47761
|
-
"%":
|
47762
|
-
"-":
|
47763
|
-
"module":
|
48063
|
+
"%": 422,
|
48064
|
+
"-": 7223,
|
48065
|
+
"module": 47,
|
47764
48066
|
"ll_backend.code_info.": 1,
|
47765
|
-
"interface.":
|
48067
|
+
"interface.": 14,
|
47766
48068
|
"import_module": 126,
|
47767
48069
|
"check_hlds.type_util.": 2,
|
47768
48070
|
"hlds.code_model.": 1,
|
@@ -47792,7 +48094,7 @@
|
|
47792
48094
|
"set.": 4,
|
47793
48095
|
"set_tree234.": 1,
|
47794
48096
|
"term.": 3,
|
47795
|
-
"implementation.":
|
48097
|
+
"implementation.": 13,
|
47796
48098
|
"backend_libs.builtin_ops.": 1,
|
47797
48099
|
"backend_libs.proc_label.": 1,
|
47798
48100
|
"hlds.arg_info.": 1,
|
@@ -47807,19 +48109,19 @@
|
|
47807
48109
|
"parse_tree.prog_type.": 2,
|
47808
48110
|
"parse_tree.mercury_to_mercury.": 1,
|
47809
48111
|
"cord.": 1,
|
47810
|
-
"int.":
|
48112
|
+
"int.": 5,
|
47811
48113
|
"pair.": 3,
|
47812
48114
|
"require.": 6,
|
47813
48115
|
"stack.": 1,
|
47814
48116
|
"string.": 7,
|
47815
48117
|
"varset.": 2,
|
47816
|
-
"type":
|
48118
|
+
"type": 62,
|
47817
48119
|
"code_info.": 1,
|
47818
|
-
"pred":
|
48120
|
+
"pred": 256,
|
47819
48121
|
"code_info_init": 2,
|
47820
|
-
"(":
|
48122
|
+
"(": 3402,
|
47821
48123
|
"bool": 406,
|
47822
|
-
"in":
|
48124
|
+
"in": 512,
|
47823
48125
|
"globals": 5,
|
47824
48126
|
"pred_id": 15,
|
47825
48127
|
"proc_id": 12,
|
@@ -47830,16 +48132,16 @@
|
|
47830
48132
|
"static_cell_info": 4,
|
47831
48133
|
"const_struct_map": 3,
|
47832
48134
|
"resume_point_info": 11,
|
47833
|
-
"out":
|
48135
|
+
"out": 338,
|
47834
48136
|
"trace_slot_info": 3,
|
47835
48137
|
"maybe": 20,
|
47836
48138
|
"containing_goal_map": 4,
|
47837
|
-
")":
|
48139
|
+
")": 3402,
|
47838
48140
|
"list": 82,
|
47839
48141
|
"string": 115,
|
47840
48142
|
"int": 129,
|
47841
48143
|
"code_info": 208,
|
47842
|
-
"is":
|
48144
|
+
"is": 247,
|
47843
48145
|
"det.": 184,
|
47844
48146
|
"get_globals": 5,
|
47845
48147
|
"get_exprn_opts": 2,
|
@@ -47931,7 +48233,7 @@
|
|
47931
48233
|
"code_info_static": 26,
|
47932
48234
|
"code_info_loc_dep": 22,
|
47933
48235
|
"code_info_persistent": 44,
|
47934
|
-
".":
|
48236
|
+
".": 631,
|
47935
48237
|
"cis_globals": 2,
|
47936
48238
|
"cis_exprn_opts": 2,
|
47937
48239
|
"cis_module_info": 2,
|
@@ -48018,7 +48320,7 @@
|
|
48018
48320
|
"yes": 144,
|
48019
48321
|
"FloatRegType": 3,
|
48020
48322
|
"reg_f": 1,
|
48021
|
-
";":
|
48323
|
+
";": 922,
|
48022
48324
|
"no": 365,
|
48023
48325
|
"reg_r": 2,
|
48024
48326
|
"globals.get_trace_level": 1,
|
@@ -48054,7 +48356,7 @@
|
|
48054
48356
|
"VarSlotMax": 2,
|
48055
48357
|
"trace_reserved_slots": 1,
|
48056
48358
|
"FixedSlots": 2,
|
48057
|
-
"_":
|
48359
|
+
"_": 171,
|
48058
48360
|
"int.max": 1,
|
48059
48361
|
"SlotMax": 2,
|
48060
48362
|
"opt_no_return_calls": 3,
|
@@ -48692,7 +48994,7 @@
|
|
48692
48994
|
"exprn/1": 1,
|
48693
48995
|
"xx": 1,
|
48694
48996
|
"scan": 16,
|
48695
|
-
"mode":
|
48997
|
+
"mode": 9,
|
48696
48998
|
"rule": 3,
|
48697
48999
|
"exprn": 7,
|
48698
49000
|
"Num": 18,
|
@@ -48927,7 +49229,7 @@
|
|
48927
49229
|
"il": 5,
|
48928
49230
|
"il_only": 4,
|
48929
49231
|
"compile_to_c": 4,
|
48930
|
-
"c":
|
49232
|
+
"c": 4,
|
48931
49233
|
"java": 35,
|
48932
49234
|
"java_only": 4,
|
48933
49235
|
"csharp": 6,
|
@@ -49426,7 +49728,7 @@
|
|
49426
49728
|
"_Category": 1,
|
49427
49729
|
"OptionsList": 2,
|
49428
49730
|
"list.member": 2,
|
49429
|
-
"multi.":
|
49731
|
+
"multi.": 2,
|
49430
49732
|
"bool_special": 7,
|
49431
49733
|
"XXX": 3,
|
49432
49734
|
"should": 1,
|
@@ -50326,7 +50628,7 @@
|
|
50326
50628
|
"rot13/2": 1,
|
50327
50629
|
"Applies": 1,
|
50328
50630
|
"algorithm": 1,
|
50329
|
-
"a":
|
50631
|
+
"a": 18,
|
50330
50632
|
"character.": 1,
|
50331
50633
|
"TmpChar": 2,
|
50332
50634
|
"io__read_char": 1,
|
@@ -50574,7 +50876,7 @@
|
|
50574
50876
|
"denied": 1,
|
50575
50877
|
"access": 3,
|
50576
50878
|
"ArrayIndexOutOfBoundsException": 1,
|
50577
|
-
"e":
|
50879
|
+
"e": 20,
|
50578
50880
|
"No": 1,
|
50579
50881
|
"Exception": 3,
|
50580
50882
|
"Unable": 3,
|
@@ -50637,7 +50939,24 @@
|
|
50637
50939
|
"*Ptr": 2,
|
50638
50940
|
"Ptr": 4,
|
50639
50941
|
"MR_strip_tag": 2,
|
50640
|
-
"Arg": 6
|
50942
|
+
"Arg": 6,
|
50943
|
+
"switch_detection_bug.": 1,
|
50944
|
+
"note": 36,
|
50945
|
+
"rank": 2,
|
50946
|
+
"modifier": 2,
|
50947
|
+
"octave": 2,
|
50948
|
+
"d": 6,
|
50949
|
+
"f": 5,
|
50950
|
+
"g": 5,
|
50951
|
+
"b": 5,
|
50952
|
+
"natural": 12,
|
50953
|
+
"sharp": 1,
|
50954
|
+
"flat": 6,
|
50955
|
+
"qualifier": 2,
|
50956
|
+
"maj": 6,
|
50957
|
+
"min": 6,
|
50958
|
+
"next_topnote": 18,
|
50959
|
+
"Oct": 32
|
50641
50960
|
},
|
50642
50961
|
"Monkey": {
|
50643
50962
|
"Strict": 1,
|
@@ -51897,6 +52216,314 @@
|
|
51897
52216
|
"down": 1,
|
51898
52217
|
"display": 1
|
51899
52218
|
},
|
52219
|
+
"NewLisp": {
|
52220
|
+
"SHEBANG#!newlisp": 1,
|
52221
|
+
";": 70,
|
52222
|
+
"@module": 1,
|
52223
|
+
"IRC": 13,
|
52224
|
+
"@description": 1,
|
52225
|
+
"a": 9,
|
52226
|
+
"basic": 1,
|
52227
|
+
"irc": 7,
|
52228
|
+
"library": 1,
|
52229
|
+
"@version": 1,
|
52230
|
+
"early": 1,
|
52231
|
+
"alpha": 1,
|
52232
|
+
"-": 256,
|
52233
|
+
"@author": 1,
|
52234
|
+
"cormullion": 1,
|
52235
|
+
"Usage": 1,
|
52236
|
+
"(": 390,
|
52237
|
+
"init": 2,
|
52238
|
+
")": 390,
|
52239
|
+
"username/nick": 1,
|
52240
|
+
"not": 3,
|
52241
|
+
"that": 1,
|
52242
|
+
"one": 1,
|
52243
|
+
"obviously": 1,
|
52244
|
+
"connect": 3,
|
52245
|
+
"irc/server": 1,
|
52246
|
+
"join": 6,
|
52247
|
+
"channel": 16,
|
52248
|
+
"{": 24,
|
52249
|
+
"#newlisp": 2,
|
52250
|
+
"}": 24,
|
52251
|
+
"room": 1,
|
52252
|
+
"either": 1,
|
52253
|
+
"read": 8,
|
52254
|
+
"loop": 6,
|
52255
|
+
"monitor": 1,
|
52256
|
+
"only": 2,
|
52257
|
+
"no": 1,
|
52258
|
+
"input": 1,
|
52259
|
+
"or": 1,
|
52260
|
+
"session": 4,
|
52261
|
+
"command": 8,
|
52262
|
+
"line": 8,
|
52263
|
+
"end": 2,
|
52264
|
+
"with": 6,
|
52265
|
+
"/QUIT": 1,
|
52266
|
+
"context": 5,
|
52267
|
+
"define": 24,
|
52268
|
+
"Idle": 1,
|
52269
|
+
"time": 4,
|
52270
|
+
"seconds": 1,
|
52271
|
+
"Itime": 3,
|
52272
|
+
"stamp": 3,
|
52273
|
+
"since": 1,
|
52274
|
+
"last": 2,
|
52275
|
+
"message": 26,
|
52276
|
+
"was": 1,
|
52277
|
+
"processed": 1,
|
52278
|
+
"register": 4,
|
52279
|
+
"callback": 25,
|
52280
|
+
"name": 18,
|
52281
|
+
"function": 6,
|
52282
|
+
"println": 11,
|
52283
|
+
"registering": 1,
|
52284
|
+
"for": 6,
|
52285
|
+
"sym": 3,
|
52286
|
+
"term": 2,
|
52287
|
+
"prefix": 2,
|
52288
|
+
"push": 3,
|
52289
|
+
"list": 34,
|
52290
|
+
"Icallbacks": 4,
|
52291
|
+
"deregister": 1,
|
52292
|
+
"deregistering": 1,
|
52293
|
+
"setf": 1,
|
52294
|
+
"assoc": 1,
|
52295
|
+
"nil": 5,
|
52296
|
+
"current": 1,
|
52297
|
+
"callbacks": 12,
|
52298
|
+
"do": 14,
|
52299
|
+
"data": 13,
|
52300
|
+
"when": 5,
|
52301
|
+
"set": 39,
|
52302
|
+
"error": 9,
|
52303
|
+
"in": 8,
|
52304
|
+
"dolist": 9,
|
52305
|
+
"rf": 1,
|
52306
|
+
"ref": 1,
|
52307
|
+
"all": 5,
|
52308
|
+
"func": 2,
|
52309
|
+
"entry": 1,
|
52310
|
+
"if": 14,
|
52311
|
+
"catch": 3,
|
52312
|
+
"apply": 1,
|
52313
|
+
"Inickname": 4,
|
52314
|
+
"str": 4,
|
52315
|
+
"Ichannels": 7,
|
52316
|
+
"of": 8,
|
52317
|
+
"day": 2,
|
52318
|
+
"server": 4,
|
52319
|
+
"port": 2,
|
52320
|
+
"Iconnected": 4,
|
52321
|
+
"true": 2,
|
52322
|
+
"identify": 1,
|
52323
|
+
"password": 2,
|
52324
|
+
"net": 10,
|
52325
|
+
"send": 11,
|
52326
|
+
"Iserver": 10,
|
52327
|
+
"format": 8,
|
52328
|
+
"part": 1,
|
52329
|
+
"chan": 3,
|
52330
|
+
"empty": 4,
|
52331
|
+
"leave": 2,
|
52332
|
+
"specified": 1,
|
52333
|
+
"begin": 4,
|
52334
|
+
"replace": 2,
|
52335
|
+
"quit": 1,
|
52336
|
+
"privmsg": 1,
|
52337
|
+
"user": 4,
|
52338
|
+
"notice": 1,
|
52339
|
+
"to": 14,
|
52340
|
+
"cond": 5,
|
52341
|
+
"starts": 5,
|
52342
|
+
"/": 1,
|
52343
|
+
"default": 1,
|
52344
|
+
"character": 1,
|
52345
|
+
"username": 10,
|
52346
|
+
"first": 11,
|
52347
|
+
"clean": 2,
|
52348
|
+
"parse": 3,
|
52349
|
+
"sender": 4,
|
52350
|
+
"|": 2,
|
52351
|
+
"slice": 1,
|
52352
|
+
"text": 7,
|
52353
|
+
"+": 2,
|
52354
|
+
"find": 2,
|
52355
|
+
"process": 3,
|
52356
|
+
"ctcp": 2,
|
52357
|
+
"target": 6,
|
52358
|
+
"PRIVMSG": 2,
|
52359
|
+
"NOTICE": 2,
|
52360
|
+
"trim": 2,
|
52361
|
+
"messages": 2,
|
52362
|
+
"parts": 1,
|
52363
|
+
"let": 2,
|
52364
|
+
"buffer": 6,
|
52365
|
+
"peek": 2,
|
52366
|
+
"receive": 1,
|
52367
|
+
"unless": 1,
|
52368
|
+
"monitoring": 1,
|
52369
|
+
"while": 3,
|
52370
|
+
"sleep": 2,
|
52371
|
+
"print": 3,
|
52372
|
+
"raw": 3,
|
52373
|
+
"example": 1,
|
52374
|
+
"using": 1,
|
52375
|
+
"lookup": 2,
|
52376
|
+
"date": 5,
|
52377
|
+
"value": 3,
|
52378
|
+
"%": 3,
|
52379
|
+
"H": 1,
|
52380
|
+
"M": 1,
|
52381
|
+
"S": 1,
|
52382
|
+
"interactive": 1,
|
52383
|
+
"terminal": 1,
|
52384
|
+
"must": 1,
|
52385
|
+
"add": 3,
|
52386
|
+
"display": 3,
|
52387
|
+
"outgoing": 1,
|
52388
|
+
"zero": 1,
|
52389
|
+
"string": 12,
|
52390
|
+
"finished": 1,
|
52391
|
+
"exit": 2,
|
52392
|
+
"code": 2,
|
52393
|
+
"[": 2,
|
52394
|
+
"]": 2,
|
52395
|
+
"simple": 1,
|
52396
|
+
"bot": 2,
|
52397
|
+
"load": 1,
|
52398
|
+
"env": 1,
|
52399
|
+
"HOME": 1,
|
52400
|
+
"/projects/programming/newlisp": 1,
|
52401
|
+
"projects/irc.lsp": 1,
|
52402
|
+
"idle": 1,
|
52403
|
+
"event": 2,
|
52404
|
+
"/text": 1,
|
52405
|
+
"module": 2,
|
52406
|
+
"loads": 1,
|
52407
|
+
"the": 20,
|
52408
|
+
"SQLite3": 1,
|
52409
|
+
"database": 5,
|
52410
|
+
"FUNCTIONS": 1,
|
52411
|
+
"displayln": 13,
|
52412
|
+
"open": 5,
|
52413
|
+
"sql": 21,
|
52414
|
+
"db": 3,
|
52415
|
+
"sql3": 7,
|
52416
|
+
"close": 4,
|
52417
|
+
"SAFE": 1,
|
52418
|
+
"FOR": 1,
|
52419
|
+
"SQL": 4,
|
52420
|
+
"this": 3,
|
52421
|
+
"makes": 1,
|
52422
|
+
"strings": 1,
|
52423
|
+
"safe": 2,
|
52424
|
+
"inserting": 1,
|
52425
|
+
"into": 3,
|
52426
|
+
"statements": 1,
|
52427
|
+
"avoid": 2,
|
52428
|
+
"injection": 2,
|
52429
|
+
"issues": 1,
|
52430
|
+
"it": 1,
|
52431
|
+
"&": 1,
|
52432
|
+
"apos": 1,
|
52433
|
+
"query": 21,
|
52434
|
+
"sqlarray": 3,
|
52435
|
+
"results": 1,
|
52436
|
+
"setq": 2,
|
52437
|
+
"return": 2,
|
52438
|
+
"macro": 2,
|
52439
|
+
"create": 3,
|
52440
|
+
"record": 6,
|
52441
|
+
"save": 3,
|
52442
|
+
"values": 6,
|
52443
|
+
"temp": 28,
|
52444
|
+
"table": 8,
|
52445
|
+
"args": 10,
|
52446
|
+
"s": 4,
|
52447
|
+
"rest": 9,
|
52448
|
+
"eval": 1,
|
52449
|
+
"now": 4,
|
52450
|
+
"arguments": 2,
|
52451
|
+
"as": 1,
|
52452
|
+
"symbols": 6,
|
52453
|
+
"under": 1,
|
52454
|
+
"index": 5,
|
52455
|
+
"num": 5,
|
52456
|
+
"leading": 1,
|
52457
|
+
"keeps": 1,
|
52458
|
+
"max": 4,
|
52459
|
+
"at": 1,
|
52460
|
+
"DB": 9,
|
52461
|
+
"d": 2,
|
52462
|
+
"extend": 6,
|
52463
|
+
"chop": 2,
|
52464
|
+
"actually": 1,
|
52465
|
+
"run": 1,
|
52466
|
+
"against": 1,
|
52467
|
+
"delete": 4,
|
52468
|
+
"re": 2,
|
52469
|
+
"done": 2,
|
52470
|
+
"so": 2,
|
52471
|
+
"context.": 2,
|
52472
|
+
"update": 1,
|
52473
|
+
"idx": 3,
|
52474
|
+
"we": 3,
|
52475
|
+
"need": 1,
|
52476
|
+
"number": 1,
|
52477
|
+
"keep": 1,
|
52478
|
+
"them": 1,
|
52479
|
+
"correct": 1,
|
52480
|
+
"order": 1,
|
52481
|
+
"length": 4,
|
52482
|
+
"D2": 2,
|
52483
|
+
"continue": 1,
|
52484
|
+
"temporary": 1,
|
52485
|
+
"debugging": 1,
|
52486
|
+
"q": 4,
|
52487
|
+
"quote": 2,
|
52488
|
+
"is": 2,
|
52489
|
+
"non": 2,
|
52490
|
+
"numeric": 2,
|
52491
|
+
"are": 1,
|
52492
|
+
"sanitized": 1,
|
52493
|
+
"put": 2,
|
52494
|
+
"second": 2,
|
52495
|
+
"argument": 2,
|
52496
|
+
"symbol": 2,
|
52497
|
+
"will": 2,
|
52498
|
+
"have": 3,
|
52499
|
+
"be": 2,
|
52500
|
+
"I": 2,
|
52501
|
+
"more": 3,
|
52502
|
+
"you": 1,
|
52503
|
+
"than": 1,
|
52504
|
+
"just": 1,
|
52505
|
+
"they": 1,
|
52506
|
+
"become": 1,
|
52507
|
+
"elements": 1,
|
52508
|
+
"WHERE": 1,
|
52509
|
+
"clause": 1,
|
52510
|
+
"access": 4,
|
52511
|
+
"log": 1,
|
52512
|
+
"file": 1,
|
52513
|
+
"items": 3,
|
52514
|
+
"integer": 1,
|
52515
|
+
"Id": 2,
|
52516
|
+
"UserId": 2,
|
52517
|
+
"Date": 7,
|
52518
|
+
"parsed": 1,
|
52519
|
+
"Result": 2,
|
52520
|
+
"Referrer": 2,
|
52521
|
+
"UserAgent": 2,
|
52522
|
+
"IP": 1,
|
52523
|
+
"UserName": 1,
|
52524
|
+
"Request": 1,
|
52525
|
+
"Size": 1
|
52526
|
+
},
|
51900
52527
|
"Nginx": {
|
51901
52528
|
"user": 1,
|
51902
52529
|
"www": 2,
|
@@ -53437,7 +54064,7 @@
|
|
53437
54064
|
"sock.read_line": 1
|
53438
54065
|
},
|
53439
54066
|
"Nix": {
|
53440
|
-
"{":
|
54067
|
+
"{": 11,
|
53441
54068
|
"stdenv": 1,
|
53442
54069
|
"fetchurl": 2,
|
53443
54070
|
"fetchgit": 5,
|
@@ -53448,12 +54075,12 @@
|
|
53448
54075
|
"libxslt": 2,
|
53449
54076
|
"expat": 2,
|
53450
54077
|
"rtmp": 4,
|
53451
|
-
"false":
|
54078
|
+
"false": 5,
|
53452
54079
|
"fullWebDAV": 3,
|
53453
54080
|
"syslog": 4,
|
53454
54081
|
"moreheaders": 3,
|
53455
54082
|
"...": 1,
|
53456
|
-
"}":
|
54083
|
+
"}": 10,
|
53457
54084
|
"let": 1,
|
53458
54085
|
"version": 2,
|
53459
54086
|
";": 32,
|
@@ -53483,9 +54110,9 @@
|
|
53483
54110
|
"+": 10,
|
53484
54111
|
"stdenv.lib.optional": 5,
|
53485
54112
|
"patches": 1,
|
53486
|
-
"if":
|
53487
|
-
"then":
|
53488
|
-
"else":
|
54113
|
+
"if": 2,
|
54114
|
+
"then": 2,
|
54115
|
+
"else": 2,
|
53489
54116
|
"configureFlags": 1,
|
53490
54117
|
"preConfigure": 1,
|
53491
54118
|
"export": 1,
|
@@ -53494,6 +54121,7 @@
|
|
53494
54121
|
"mv": 1,
|
53495
54122
|
"out/sbin": 1,
|
53496
54123
|
"out/bin": 1,
|
54124
|
+
"true": 1,
|
53497
54125
|
"meta": 1,
|
53498
54126
|
"description": 1,
|
53499
54127
|
"maintainers": 1,
|
@@ -60013,26 +60641,26 @@
|
|
60013
60641
|
".end": 1
|
60014
60642
|
},
|
60015
60643
|
"Pascal": {
|
60016
|
-
"unit":
|
60644
|
+
"unit": 2,
|
60017
60645
|
"custforms": 1,
|
60018
|
-
";":
|
60019
|
-
"{":
|
60020
|
-
"mode":
|
60021
|
-
"objfpc":
|
60022
|
-
"}":
|
60023
|
-
"H":
|
60024
|
-
"+":
|
60646
|
+
";": 202,
|
60647
|
+
"{": 9,
|
60648
|
+
"mode": 1,
|
60649
|
+
"objfpc": 1,
|
60650
|
+
"}": 8,
|
60651
|
+
"H": 1,
|
60652
|
+
"+": 6,
|
60025
60653
|
"interface": 2,
|
60026
|
-
"uses":
|
60654
|
+
"uses": 6,
|
60027
60655
|
"Classes": 1,
|
60028
60656
|
"SysUtils": 1,
|
60029
60657
|
"Forms": 2,
|
60030
|
-
"Type":
|
60658
|
+
"Type": 3,
|
60031
60659
|
"TCustomFormDescr": 13,
|
60032
60660
|
"Class": 2,
|
60033
60661
|
"private": 2,
|
60034
60662
|
"FAuthor": 3,
|
60035
|
-
"String":
|
60663
|
+
"String": 24,
|
60036
60664
|
"FCaption": 4,
|
60037
60665
|
"FCategory": 4,
|
60038
60666
|
"FDescription": 4,
|
@@ -60043,13 +60671,13 @@
|
|
60043
60671
|
"public": 1,
|
60044
60672
|
"Constructor": 3,
|
60045
60673
|
"Create": 5,
|
60046
|
-
"(":
|
60674
|
+
"(": 47,
|
60047
60675
|
"AFormClass": 12,
|
60048
|
-
"const":
|
60676
|
+
"const": 6,
|
60049
60677
|
"APackage": 12,
|
60050
60678
|
"string": 4,
|
60051
|
-
")":
|
60052
|
-
"Const":
|
60679
|
+
")": 47,
|
60680
|
+
"Const": 5,
|
60053
60681
|
"ACaption": 3,
|
60054
60682
|
"ADescription": 3,
|
60055
60683
|
"AUnit": 3,
|
@@ -60063,8 +60691,8 @@
|
|
60063
60691
|
"Category": 1,
|
60064
60692
|
"Author": 1,
|
60065
60693
|
"LazPackage": 1,
|
60066
|
-
"end":
|
60067
|
-
"Procedure":
|
60694
|
+
"end": 22,
|
60695
|
+
"Procedure": 11,
|
60068
60696
|
"RegisterCustomForm": 8,
|
60069
60697
|
"Descr": 3,
|
60070
60698
|
"AUnitName": 3,
|
@@ -60077,16 +60705,16 @@
|
|
60077
60705
|
"SInstanceOf": 2,
|
60078
60706
|
"constructor": 3,
|
60079
60707
|
"TCustomFormDescr.Create": 4,
|
60080
|
-
"Var":
|
60708
|
+
"Var": 5,
|
60081
60709
|
"N": 5,
|
60082
60710
|
"U": 5,
|
60083
|
-
"begin":
|
60711
|
+
"begin": 22,
|
60084
60712
|
"AFormClass.ClassName": 1,
|
60085
|
-
"If":
|
60713
|
+
"If": 3,
|
60086
60714
|
"Upcase": 1,
|
60087
|
-
"[":
|
60088
|
-
"]":
|
60089
|
-
"then":
|
60715
|
+
"[": 11,
|
60716
|
+
"]": 11,
|
60717
|
+
"then": 6,
|
60090
60718
|
"Delete": 1,
|
60091
60719
|
"Format": 1,
|
60092
60720
|
"TCustomFormFileDescriptor": 3,
|
@@ -60095,7 +60723,7 @@
|
|
60095
60723
|
"Public": 1,
|
60096
60724
|
"ADescr": 3,
|
60097
60725
|
"FormDescr": 1,
|
60098
|
-
"Function":
|
60726
|
+
"Function": 6,
|
60099
60727
|
"GetLocalizedName": 1,
|
60100
60728
|
"override": 3,
|
60101
60729
|
"GetLocalizedDescription": 1,
|
@@ -60111,11 +60739,11 @@
|
|
60111
60739
|
"//Writeln": 1,
|
60112
60740
|
"function": 3,
|
60113
60741
|
"TCustomFormFileDescriptor.GetLocalizedName": 1,
|
60114
|
-
"Result":
|
60742
|
+
"Result": 8,
|
60115
60743
|
"TCustomFormFileDescriptor.GetLocalizedDescription": 1,
|
60116
60744
|
"FFormDescr.Description": 1,
|
60117
60745
|
"FFormDescr.Author": 2,
|
60118
|
-
"<":
|
60746
|
+
"<": 4,
|
60119
60747
|
"LineEnding": 1,
|
60120
60748
|
"TCustomFormFileDescriptor.GetInterfaceUsesSection": 1,
|
60121
60749
|
"inherited": 1,
|
@@ -60123,12 +60751,12 @@
|
|
60123
60751
|
"CustomFormList": 5,
|
60124
60752
|
"TObjectList": 1,
|
60125
60753
|
"CustomFormList.Add": 1,
|
60126
|
-
"D":
|
60754
|
+
"D": 8,
|
60127
60755
|
"D.UnitName": 1,
|
60128
60756
|
"L": 3,
|
60129
60757
|
"TStringList": 1,
|
60130
|
-
"I":
|
60131
|
-
"Integer":
|
60758
|
+
"I": 4,
|
60759
|
+
"Integer": 4,
|
60132
60760
|
"TStringList.Create": 1,
|
60133
60761
|
"Try": 1,
|
60134
60762
|
"L.Sorted": 1,
|
@@ -60136,12 +60764,12 @@
|
|
60136
60764
|
"L.Duplicates": 1,
|
60137
60765
|
"dupIgnore": 1,
|
60138
60766
|
"For": 3,
|
60139
|
-
"to":
|
60767
|
+
"to": 4,
|
60140
60768
|
"CustomFormList.Count": 2,
|
60141
|
-
"-":
|
60142
|
-
"do":
|
60769
|
+
"-": 4,
|
60770
|
+
"do": 4,
|
60143
60771
|
"L.Add": 1,
|
60144
|
-
"i":
|
60772
|
+
"i": 8,
|
60145
60773
|
".Category": 1,
|
60146
60774
|
"L.Count": 1,
|
60147
60775
|
"RegisterNewItemCategory": 1,
|
@@ -60154,68 +60782,119 @@
|
|
60154
60782
|
"TObjectList.Create": 1,
|
60155
60783
|
"DoneCustomForms": 2,
|
60156
60784
|
"FreeAndNil": 1,
|
60157
|
-
"Initialization":
|
60158
|
-
"Finalization":
|
60159
|
-
"end.":
|
60160
|
-
"
|
60161
|
-
"
|
60162
|
-
"
|
60163
|
-
"
|
60164
|
-
"
|
60165
|
-
"
|
60166
|
-
"
|
60167
|
-
"
|
60168
|
-
"
|
60169
|
-
"
|
60170
|
-
"
|
60171
|
-
"
|
60172
|
-
"
|
60173
|
-
"
|
60174
|
-
"
|
60785
|
+
"Initialization": 2,
|
60786
|
+
"Finalization": 2,
|
60787
|
+
"end.": 5,
|
60788
|
+
"cwindirs": 1,
|
60789
|
+
"windows": 1,
|
60790
|
+
"strings": 1,
|
60791
|
+
"CSIDL_PROGRAMS": 1,
|
60792
|
+
"CSIDL_PERSONAL": 1,
|
60793
|
+
"CSIDL_FAVORITES": 1,
|
60794
|
+
"CSIDL_STARTUP": 1,
|
60795
|
+
"CSIDL_RECENT": 1,
|
60796
|
+
"CSIDL_SENDTO": 1,
|
60797
|
+
"CSIDL_STARTMENU": 1,
|
60798
|
+
"B": 4,
|
60799
|
+
"CSIDL_MYMUSIC": 1,
|
60800
|
+
"CSIDL_MYVIDEO": 1,
|
60801
|
+
"E": 3,
|
60802
|
+
"CSIDL_DESKTOPDIRECTORY": 1,
|
60803
|
+
"CSIDL_NETHOOD": 1,
|
60804
|
+
"CSIDL_TEMPLATES": 1,
|
60805
|
+
"CSIDL_COMMON_STARTMENU": 1,
|
60806
|
+
"CSIDL_COMMON_PROGRAMS": 1,
|
60807
|
+
"CSIDL_COMMON_STARTUP": 1,
|
60808
|
+
"CSIDL_COMMON_DESKTOPDIRECTORY": 1,
|
60809
|
+
"CSIDL_APPDATA": 1,
|
60810
|
+
"A": 1,
|
60811
|
+
"CSIDL_PRINTHOOD": 1,
|
60812
|
+
"CSIDL_LOCAL_APPDATA": 1,
|
60813
|
+
"C": 1,
|
60814
|
+
"CSIDL_COMMON_FAVORITES": 1,
|
60815
|
+
"F": 2,
|
60816
|
+
"CSIDL_INTERNET_CACHE": 1,
|
60817
|
+
"CSIDL_COOKIES": 1,
|
60818
|
+
"CSIDL_HISTORY": 1,
|
60819
|
+
"CSIDL_COMMON_APPDATA": 1,
|
60820
|
+
"CSIDL_WINDOWS": 1,
|
60821
|
+
"CSIDL_SYSTEM": 1,
|
60822
|
+
"CSIDL_PROGRAM_FILES": 1,
|
60823
|
+
"CSIDL_MYPICTURES": 1,
|
60824
|
+
"CSIDL_PROFILE": 1,
|
60825
|
+
"CSIDL_PROGRAM_FILES_COMMON": 1,
|
60826
|
+
"CSIDL_COMMON_TEMPLATES": 1,
|
60827
|
+
"CSIDL_COMMON_DOCUMENTS": 1,
|
60828
|
+
"CSIDL_COMMON_ADMINTOOLS": 1,
|
60829
|
+
"CSIDL_ADMINTOOLS": 1,
|
60830
|
+
"CSIDL_COMMON_MUSIC": 1,
|
60831
|
+
"CSIDL_COMMON_PICTURES": 1,
|
60832
|
+
"CSIDL_COMMON_VIDEO": 1,
|
60833
|
+
"CSIDL_CDBURN_AREA": 1,
|
60834
|
+
"CSIDL_PROFILES": 1,
|
60835
|
+
"CSIDL_FLAG_CREATE": 2,
|
60836
|
+
"GetWindowsSpecialDir": 1,
|
60837
|
+
"ID": 2,
|
60838
|
+
"sysutils": 1,
|
60839
|
+
"PFNSHGetFolderPath": 2,
|
60840
|
+
"Ahwnd": 1,
|
60841
|
+
"HWND": 1,
|
60842
|
+
"Csidl": 1,
|
60843
|
+
"Token": 1,
|
60844
|
+
"THandle": 2,
|
60845
|
+
"Flags": 1,
|
60846
|
+
"DWord": 1,
|
60847
|
+
"Path": 1,
|
60848
|
+
"PChar": 1,
|
60849
|
+
"HRESULT": 1,
|
60850
|
+
"stdcall": 1,
|
60851
|
+
"var": 3,
|
60852
|
+
"SHGetFolderPath": 4,
|
60853
|
+
"Nil": 2,
|
60854
|
+
"CFGDLLHandle": 3,
|
60855
|
+
"InitDLL": 2,
|
60856
|
+
"pathBuf": 1,
|
60857
|
+
"array": 2,
|
60858
|
+
"MAX_PATH": 1,
|
60175
60859
|
"of": 2,
|
60176
|
-
"
|
60177
|
-
"
|
60178
|
-
"
|
60179
|
-
"
|
60180
|
-
"
|
60181
|
-
"
|
60182
|
-
"
|
60183
|
-
"
|
60184
|
-
"@lastmod": 1,
|
60185
|
-
"Date": 1,
|
60186
|
-
"@author": 1,
|
60187
|
-
"Marc": 1,
|
60188
|
-
"Weustink": 1,
|
60189
|
-
"<marc@@dommelstein.nl>": 1,
|
60190
|
-
"*****************************************************************************": 2,
|
60191
|
-
"file": 2,
|
60192
|
-
"is": 1,
|
60193
|
-
"part": 1,
|
60194
|
-
"the": 3,
|
60195
|
-
"Lazarus": 1,
|
60196
|
-
"Component": 1,
|
60197
|
-
"Library": 1,
|
60198
|
-
"LCL": 1,
|
60199
|
-
"See": 1,
|
60200
|
-
"COPYING.modifiedLGPL.txt": 1,
|
60201
|
-
"included": 1,
|
60860
|
+
"char": 1,
|
60861
|
+
"pathLength": 1,
|
60862
|
+
"Load": 1,
|
60863
|
+
"shfolder.dll": 2,
|
60864
|
+
"using": 1,
|
60865
|
+
"a": 1,
|
60866
|
+
"full": 1,
|
60867
|
+
"path": 1,
|
60202
60868
|
"in": 2,
|
60203
|
-
"
|
60204
|
-
"
|
60205
|
-
"
|
60206
|
-
"
|
60207
|
-
"
|
60208
|
-
"
|
60209
|
-
"
|
60210
|
-
"
|
60211
|
-
"
|
60212
|
-
"
|
60213
|
-
"
|
60214
|
-
"
|
60215
|
-
"
|
60216
|
-
"
|
60217
|
-
"
|
60218
|
-
"
|
60869
|
+
"order": 1,
|
60870
|
+
"prevent": 1,
|
60871
|
+
"spoofing": 1,
|
60872
|
+
"Mantis": 1,
|
60873
|
+
"#18185": 1,
|
60874
|
+
"Don": 1,
|
60875
|
+
"SHGetFolderPathA": 1,
|
60876
|
+
"Could": 1,
|
60877
|
+
"not": 1,
|
60878
|
+
"determine": 1,
|
60879
|
+
"if": 3,
|
60880
|
+
"or": 1,
|
60881
|
+
"@APATH": 1,
|
60882
|
+
"S_OK": 1,
|
60883
|
+
"IncludeTrailingPathDelimiter": 1,
|
60884
|
+
"StrPas": 1,
|
60885
|
+
"@APath": 1,
|
60886
|
+
"FreeLibrary": 1,
|
60887
|
+
"CFGDllHandle": 1,
|
60888
|
+
"program": 2,
|
60889
|
+
"large": 1,
|
60890
|
+
"max": 3,
|
60891
|
+
"type": 1,
|
60892
|
+
"tlist": 2,
|
60893
|
+
"longint": 1,
|
60894
|
+
"data": 3,
|
60895
|
+
"integer": 1,
|
60896
|
+
"while": 1,
|
60897
|
+
"Writeln": 1,
|
60219
60898
|
"gmail": 1,
|
60220
60899
|
"Unit2": 1,
|
60221
60900
|
"Form2": 2,
|
@@ -60225,7 +60904,16 @@
|
|
60225
60904
|
"Application.MainFormOnTaskbar": 1,
|
60226
60905
|
"Application.CreateForm": 1,
|
60227
60906
|
"TForm2": 1,
|
60228
|
-
"Application.Run": 1
|
60907
|
+
"Application.Run": 1,
|
60908
|
+
"uw27294": 1,
|
60909
|
+
"p": 4,
|
60910
|
+
"procedure": 3,
|
60911
|
+
"test": 2,
|
60912
|
+
"@test": 1,
|
60913
|
+
"writeln": 1,
|
60914
|
+
"global": 2,
|
60915
|
+
"nil": 1,
|
60916
|
+
"uw27294.global": 1
|
60229
60917
|
},
|
60230
60918
|
"Perl": {
|
60231
60919
|
"package": 14,
|
@@ -64598,15 +65286,172 @@
|
|
64598
65286
|
"EOF": 1
|
64599
65287
|
},
|
64600
65288
|
"PowerShell": {
|
65289
|
+
"function": 9,
|
65290
|
+
"Save": 4,
|
65291
|
+
"-": 64,
|
65292
|
+
"HistoryAll": 2,
|
65293
|
+
"(": 38,
|
65294
|
+
")": 38,
|
65295
|
+
"{": 32,
|
65296
|
+
"history": 11,
|
65297
|
+
"Get": 10,
|
65298
|
+
"History": 8,
|
65299
|
+
"Count": 3,
|
65300
|
+
"MaximumHistoryCount": 2,
|
65301
|
+
"[": 11,
|
65302
|
+
"array": 2,
|
65303
|
+
"]": 11,
|
65304
|
+
"Reverse": 2,
|
65305
|
+
"|": 12,
|
65306
|
+
"Group": 1,
|
65307
|
+
"CommandLine": 1,
|
65308
|
+
"Foreach": 1,
|
65309
|
+
"_.Group": 1,
|
65310
|
+
"}": 32,
|
65311
|
+
"Export": 3,
|
65312
|
+
"Csv": 4,
|
65313
|
+
"historyPath": 5,
|
65314
|
+
"HistoryIncremental": 1,
|
65315
|
+
"Append": 1,
|
65316
|
+
"#Register": 1,
|
65317
|
+
"EngineEvent": 1,
|
65318
|
+
"SourceIdentifier": 1,
|
65319
|
+
"powershell.exiting": 1,
|
65320
|
+
"SupportEvent": 1,
|
65321
|
+
"Action": 1,
|
65322
|
+
"oldPrompt": 3,
|
65323
|
+
"Content": 1,
|
65324
|
+
"prompt": 2,
|
65325
|
+
"if": 8,
|
65326
|
+
"notlike": 1,
|
65327
|
+
"newPrompt": 3,
|
65328
|
+
"@": 8,
|
65329
|
+
"+": 5,
|
65330
|
+
"ScriptBlock": 1,
|
65331
|
+
"Create": 1,
|
65332
|
+
"Test": 4,
|
65333
|
+
"Path": 4,
|
65334
|
+
"loadTime": 1,
|
65335
|
+
"Measure": 1,
|
65336
|
+
"Command": 1,
|
65337
|
+
"Import": 2,
|
65338
|
+
"Add": 4,
|
65339
|
+
"Clear": 1,
|
65340
|
+
"count": 1,
|
65341
|
+
";": 2,
|
65342
|
+
"true": 5,
|
65343
|
+
".totalseconds": 1,
|
64601
65344
|
"Write": 2,
|
64602
|
-
"
|
64603
|
-
"
|
64604
|
-
"
|
64605
|
-
"
|
64606
|
-
"
|
64607
|
-
"
|
64608
|
-
"
|
64609
|
-
"
|
65345
|
+
"Host": 1,
|
65346
|
+
"Fore": 1,
|
65347
|
+
"Green": 1,
|
65348
|
+
"Search": 1,
|
65349
|
+
"<#>": 1,
|
65350
|
+
"SYNOPSIS": 1,
|
65351
|
+
"Retrive": 1,
|
65352
|
+
"and": 1,
|
65353
|
+
"filter": 1,
|
65354
|
+
"based": 1,
|
65355
|
+
"on": 1,
|
65356
|
+
"query": 3,
|
65357
|
+
"DESCRIPTION": 1,
|
65358
|
+
"PARAMETER": 1,
|
65359
|
+
"Name": 2,
|
65360
|
+
"EXAMPLE": 1,
|
65361
|
+
"LINK": 1,
|
65362
|
+
"param": 2,
|
65363
|
+
"string": 3,
|
65364
|
+
"foreach": 1,
|
65365
|
+
"item": 3,
|
65366
|
+
"in": 1,
|
65367
|
+
"item.ToLower": 1,
|
65368
|
+
"where": 1,
|
65369
|
+
"_.CommandLine.ToLower": 1,
|
65370
|
+
".Contains": 1,
|
65371
|
+
"#": 14,
|
65372
|
+
"RootModule": 1,
|
65373
|
+
"ModuleVersion": 1,
|
65374
|
+
"GUID": 1,
|
65375
|
+
"Author": 1,
|
65376
|
+
"CompanyName": 1,
|
65377
|
+
"Copyright": 1,
|
65378
|
+
"NestedModules": 1,
|
65379
|
+
"FunctionsToExport": 1,
|
65380
|
+
"CmdletsToExport": 1,
|
65381
|
+
"VariablesToExport": 1,
|
65382
|
+
"AliasesToExport": 1,
|
65383
|
+
"PrivateData": 2,
|
65384
|
+
"PSData": 2,
|
65385
|
+
"End": 2,
|
65386
|
+
"of": 2,
|
65387
|
+
"hashtable": 2,
|
65388
|
+
"Update": 2,
|
65389
|
+
"ZLocation": 8,
|
65390
|
+
"path": 6,
|
65391
|
+
"now": 1,
|
65392
|
+
"datetime": 2,
|
65393
|
+
"Now": 2,
|
65394
|
+
"variable": 1,
|
65395
|
+
"global": 4,
|
65396
|
+
"__zlocation_current": 3,
|
65397
|
+
"prev": 1,
|
65398
|
+
"weight": 2,
|
65399
|
+
"now.Subtract": 1,
|
65400
|
+
"prev.Time": 1,
|
65401
|
+
".TotalSeconds": 1,
|
65402
|
+
"ZWeight": 2,
|
65403
|
+
"prev.Location": 1,
|
65404
|
+
"Location": 2,
|
65405
|
+
"Time": 1,
|
65406
|
+
"Variable": 1,
|
65407
|
+
"pwd": 1,
|
65408
|
+
".attributes.Add": 1,
|
65409
|
+
"new": 1,
|
65410
|
+
"object": 1,
|
65411
|
+
"ValidateScript": 1,
|
65412
|
+
"_.Path": 1,
|
65413
|
+
"return": 3,
|
65414
|
+
"Function": 4,
|
65415
|
+
"TabExpansion": 3,
|
65416
|
+
"Rename": 1,
|
65417
|
+
"Item": 1,
|
65418
|
+
"PreZTabExpansion": 3,
|
65419
|
+
"EscapedPath": 2,
|
65420
|
+
"Parameter": 1,
|
65421
|
+
"Position": 1,
|
65422
|
+
"Mandatory": 1,
|
65423
|
+
"ValueFromPipeline": 1,
|
65424
|
+
"ValueFromPipelineByPropertyName": 1,
|
65425
|
+
"process": 1,
|
65426
|
+
"path.Contains": 1,
|
65427
|
+
"line": 4,
|
65428
|
+
"lastWord": 2,
|
65429
|
+
"switch": 1,
|
65430
|
+
"regex": 1,
|
65431
|
+
"arguments": 2,
|
65432
|
+
"split": 1,
|
65433
|
+
"Where": 1,
|
65434
|
+
"_.length": 1,
|
65435
|
+
"gt": 1,
|
65436
|
+
"select": 1,
|
65437
|
+
"Skip": 1,
|
65438
|
+
"Find": 2,
|
65439
|
+
"Matches": 2,
|
65440
|
+
"default": 1,
|
65441
|
+
"Set": 4,
|
65442
|
+
"not": 1,
|
65443
|
+
"args": 3,
|
65444
|
+
"matches": 3,
|
65445
|
+
"Push": 1,
|
65446
|
+
"Select": 1,
|
65447
|
+
"Object": 1,
|
65448
|
+
"First": 1,
|
65449
|
+
"else": 1,
|
65450
|
+
"Warning": 1,
|
65451
|
+
"Alias": 2,
|
65452
|
+
"z": 2,
|
65453
|
+
"Value": 1,
|
65454
|
+
"ModuleMember": 1
|
64610
65455
|
},
|
64611
65456
|
"Processing": {
|
64612
65457
|
"void": 2,
|
@@ -68188,16 +69033,16 @@
|
|
68188
69033
|
"sys": 4,
|
68189
69034
|
"argv": 5,
|
68190
69035
|
"session.argv": 1,
|
68191
|
-
"(":
|
68192
|
-
")":
|
69036
|
+
"(": 944,
|
69037
|
+
")": 955,
|
68193
69038
|
"feed": 1,
|
68194
69039
|
"Feed.get": 1,
|
68195
|
-
"guid":
|
68196
|
-
"[":
|
68197
|
-
"]":
|
69040
|
+
"guid": 2,
|
69041
|
+
"[": 194,
|
69042
|
+
"]": 194,
|
68198
69043
|
"action": 5,
|
68199
|
-
"if":
|
68200
|
-
"when":
|
69044
|
+
"if": 172,
|
69045
|
+
"when": 6,
|
68201
69046
|
"feed.notify_interval": 1,
|
68202
69047
|
"*": 39,
|
68203
69048
|
"feed.notify_unit": 1,
|
@@ -68205,8 +69050,8 @@
|
|
68205
69050
|
"len": 12,
|
68206
69051
|
"int": 2,
|
68207
69052
|
"else": 36,
|
68208
|
-
"print":
|
68209
|
-
"%":
|
69053
|
+
"print": 41,
|
69054
|
+
"%": 43,
|
68210
69055
|
"sys.exit": 2,
|
68211
69056
|
"feed.notify_next": 1,
|
68212
69057
|
"datetime.datetime.utcnow": 1,
|
@@ -68215,49 +69060,32 @@
|
|
68215
69060
|
"seconds": 1,
|
68216
69061
|
"feed.save": 1,
|
68217
69062
|
"response": 1,
|
68218
|
-
"
|
68219
|
-
"
|
68220
|
-
"notified": 1,
|
69063
|
+
"when_left": 2,
|
69064
|
+
"duration_list": 3,
|
68221
69065
|
"for": 77,
|
68222
|
-
"
|
68223
|
-
"
|
68224
|
-
"
|
68225
|
-
"
|
69066
|
+
"label": 27,
|
69067
|
+
"period": 4,
|
69068
|
+
"in": 102,
|
69069
|
+
"*365/12": 1,
|
69070
|
+
"*7": 1,
|
69071
|
+
"break": 3,
|
69072
|
+
"val": 19,
|
69073
|
+
"when_left/period": 1,
|
69074
|
+
"duration_list.append": 1,
|
69075
|
+
"and": 36,
|
69076
|
+
"or": 28,
|
69077
|
+
"-": 42,
|
69078
|
+
"val*period": 1,
|
69079
|
+
"basedir": 3,
|
69080
|
+
"session.request_script_dir": 1,
|
69081
|
+
"response.format": 1,
|
69082
|
+
"feed.guid": 1,
|
69083
|
+
"name": 42,
|
69084
|
+
"feed.name": 1,
|
69085
|
+
"edit_url": 1,
|
69086
|
+
"base_url": 1,
|
68226
69087
|
"duration": 1,
|
68227
|
-
"}": 30,
|
68228
|
-
"</span>": 1,
|
68229
|
-
".": 2,
|
68230
|
-
"</p>": 3,
|
68231
|
-
"<p>": 2,
|
68232
|
-
"Actions": 1,
|
68233
|
-
"<ul>": 1,
|
68234
|
-
"<li>": 3,
|
68235
|
-
"<a>": 4,
|
68236
|
-
"href=": 4,
|
68237
|
-
"Edit": 1,
|
68238
|
-
"this": 3,
|
68239
|
-
"reminder": 2,
|
68240
|
-
"</a>": 4,
|
68241
|
-
"</li>": 3,
|
68242
|
-
"Create": 1,
|
68243
|
-
"Visit": 1,
|
68244
|
-
"the": 7,
|
68245
|
-
"Reminder": 2,
|
68246
|
-
"Me": 2,
|
68247
|
-
"site": 1,
|
68248
|
-
"</ul>": 1,
|
68249
|
-
"</div>": 2,
|
68250
|
-
"</body>": 1,
|
68251
|
-
"</html>": 1,
|
68252
|
-
"month": 1,
|
68253
|
-
"week": 1,
|
68254
|
-
"day": 1,
|
68255
|
-
"hour": 1,
|
68256
|
-
"minute": 1,
|
68257
|
-
"second": 1,
|
68258
|
-
"s": 3,
|
68259
69088
|
".join": 7,
|
68260
|
-
"duration_list": 1,
|
68261
69089
|
"xspacing": 4,
|
68262
69090
|
"#": 28,
|
68263
69091
|
"How": 2,
|
@@ -68267,6 +69095,7 @@
|
|
68267
69095
|
"each": 1,
|
68268
69096
|
"horizontal": 1,
|
68269
69097
|
"location": 1,
|
69098
|
+
"be": 1,
|
68270
69099
|
"spaced": 1,
|
68271
69100
|
"maxwaves": 3,
|
68272
69101
|
"total": 1,
|
@@ -68290,14 +69119,13 @@
|
|
68290
69119
|
"w": 2,
|
68291
69120
|
"width": 1,
|
68292
69121
|
"i": 13,
|
68293
|
-
"in": 101,
|
68294
69122
|
"range": 5,
|
68295
69123
|
"amplitude.append": 1,
|
68296
69124
|
"random": 2,
|
68297
|
-
"period": 2,
|
68298
69125
|
"many": 1,
|
68299
69126
|
"pixels": 1,
|
68300
69127
|
"before": 9,
|
69128
|
+
"the": 6,
|
68301
69129
|
"repeats": 1,
|
68302
69130
|
"dx.append": 1,
|
68303
69131
|
"TWO_PI": 1,
|
@@ -68332,8 +69160,11 @@
|
|
68332
69160
|
"urldecode": 1,
|
68333
69161
|
"query": 3,
|
68334
69162
|
"d": 9,
|
69163
|
+
"{": 29,
|
69164
|
+
"}": 29,
|
68335
69165
|
"a": 4,
|
68336
69166
|
"query.split": 1,
|
69167
|
+
"s": 2,
|
68337
69168
|
"s.find": 1,
|
68338
69169
|
"k": 10,
|
68339
69170
|
"map": 2,
|
@@ -68349,7 +69180,6 @@
|
|
68349
69180
|
"cur": 3,
|
68350
69181
|
"table": 8,
|
68351
69182
|
"uri.split": 2,
|
68352
|
-
"-": 41,
|
68353
69183
|
"table.split": 1,
|
68354
69184
|
"contents": 2,
|
68355
69185
|
"urllib2.urlopen": 2,
|
@@ -68366,7 +69196,6 @@
|
|
68366
69196
|
"values": 20,
|
68367
69197
|
"line.strip": 1,
|
68368
69198
|
"val.strip": 1,
|
68369
|
-
"val": 15,
|
68370
69199
|
"values.split": 1,
|
68371
69200
|
"sql": 2,
|
68372
69201
|
"build_structure": 3,
|
@@ -68393,7 +69222,6 @@
|
|
68393
69222
|
"start_response": 3,
|
68394
69223
|
"args": 17,
|
68395
69224
|
"cgi.parse_qs": 1,
|
68396
|
-
"label": 24,
|
68397
69225
|
"con": 1,
|
68398
69226
|
"sqlite.connect": 1,
|
68399
69227
|
"con.cursor": 1,
|
@@ -68404,7 +69232,6 @@
|
|
68404
69232
|
"cur.fetchall": 1,
|
68405
69233
|
"after": 8,
|
68406
69234
|
"log.write": 4,
|
68407
|
-
"name": 41,
|
68408
69235
|
"cur.description": 1,
|
68409
69236
|
"__name__": 4,
|
68410
69237
|
"fcgi": 1,
|
@@ -68626,9 +69453,7 @@
|
|
68626
69453
|
"tuple": 3,
|
68627
69454
|
"x.DoesNotExist": 1,
|
68628
69455
|
"hasattr": 11,
|
68629
|
-
"and": 35,
|
68630
69456
|
"x._meta.abstract": 2,
|
68631
|
-
"or": 27,
|
68632
69457
|
"x.MultipleObjectsReturned": 1,
|
68633
69458
|
"base_meta.abstract": 1,
|
68634
69459
|
"new_class._meta.ordering": 1,
|
@@ -68898,7 +69723,6 @@
|
|
68898
69723
|
"model_class": 11,
|
68899
69724
|
"unique_together": 2,
|
68900
69725
|
"check": 4,
|
68901
|
-
"break": 2,
|
68902
69726
|
"unique_checks.append": 2,
|
68903
69727
|
"fields_with_class": 2,
|
68904
69728
|
"self._meta.local_fields": 1,
|
@@ -68984,6 +69808,7 @@
|
|
68984
69808
|
"A": 1,
|
68985
69809
|
"which": 1,
|
68986
69810
|
"methods": 5,
|
69811
|
+
"this": 2,
|
68987
69812
|
"pluggable": 1,
|
68988
69813
|
"view": 2,
|
68989
69814
|
"can": 1,
|
@@ -68995,6 +69820,7 @@
|
|
68995
69820
|
"based": 1,
|
68996
69821
|
"views": 1,
|
68997
69822
|
"as_view": 1,
|
69823
|
+
".": 1,
|
68998
69824
|
"However": 1,
|
68999
69825
|
"since": 1,
|
69000
69826
|
"moves": 1,
|
@@ -69120,6 +69946,7 @@
|
|
69120
69946
|
"V": 12,
|
69121
69947
|
"np.genfromtxt": 8,
|
69122
69948
|
"delimiter": 8,
|
69949
|
+
"t": 8,
|
69123
69950
|
"U_err": 7,
|
69124
69951
|
"offset": 13,
|
69125
69952
|
"np.mean": 1,
|
@@ -84600,6 +85427,45 @@
|
|
84600
85427
|
"do": 1,
|
84601
85428
|
"card": 2
|
84602
85429
|
},
|
85430
|
+
"desktop": {
|
85431
|
+
"[": 3,
|
85432
|
+
"Desktop": 3,
|
85433
|
+
"Entry": 1,
|
85434
|
+
"]": 3,
|
85435
|
+
"Version": 1,
|
85436
|
+
"Type": 1,
|
85437
|
+
"Application": 1,
|
85438
|
+
"Name": 3,
|
85439
|
+
"Foo": 3,
|
85440
|
+
"Viewer": 1,
|
85441
|
+
"Comment": 1,
|
85442
|
+
"The": 1,
|
85443
|
+
"best": 1,
|
85444
|
+
"viewer": 1,
|
85445
|
+
"for": 1,
|
85446
|
+
"objects": 1,
|
85447
|
+
"available": 1,
|
85448
|
+
"TryExec": 1,
|
85449
|
+
"fooview": 6,
|
85450
|
+
"Exec": 3,
|
85451
|
+
"%": 1,
|
85452
|
+
"F": 1,
|
85453
|
+
"Icon": 2,
|
85454
|
+
"MimeType": 1,
|
85455
|
+
"image/x": 1,
|
85456
|
+
"-": 7,
|
85457
|
+
"foo": 1,
|
85458
|
+
";": 3,
|
85459
|
+
"Actions": 1,
|
85460
|
+
"Gallery": 3,
|
85461
|
+
"Create": 3,
|
85462
|
+
"Action": 2,
|
85463
|
+
"gallery": 1,
|
85464
|
+
"Browse": 1,
|
85465
|
+
"create": 1,
|
85466
|
+
"new": 3,
|
85467
|
+
"a": 1
|
85468
|
+
},
|
84603
85469
|
"edn": {
|
84604
85470
|
"[": 24,
|
84605
85471
|
"{": 22,
|
@@ -85245,7 +86111,7 @@
|
|
85245
86111
|
"CoffeeScript": 3026,
|
85246
86112
|
"ColdFusion": 131,
|
85247
86113
|
"ColdFusion CFC": 611,
|
85248
|
-
"Common Lisp":
|
86114
|
+
"Common Lisp": 2289,
|
85249
86115
|
"Component Pascal": 825,
|
85250
86116
|
"Cool": 367,
|
85251
86117
|
"Coq": 18259,
|
@@ -85262,7 +86128,7 @@
|
|
85262
86128
|
"ECL": 281,
|
85263
86129
|
"Eagle": 30089,
|
85264
86130
|
"Elm": 628,
|
85265
|
-
"Emacs Lisp":
|
86131
|
+
"Emacs Lisp": 2054,
|
85266
86132
|
"EmberScript": 45,
|
85267
86133
|
"Erlang": 2928,
|
85268
86134
|
"F#": 3281,
|
@@ -85271,7 +86137,7 @@
|
|
85271
86137
|
"Frege": 5564,
|
85272
86138
|
"G-code": 432,
|
85273
86139
|
"GAMS": 363,
|
85274
|
-
"GAP":
|
86140
|
+
"GAP": 11123,
|
85275
86141
|
"GAS": 133,
|
85276
86142
|
"GDScript": 1958,
|
85277
86143
|
"GLSL": 4321,
|
@@ -85333,22 +86199,23 @@
|
|
85333
86199
|
"Makefile": 50,
|
85334
86200
|
"Markdown": 1,
|
85335
86201
|
"Mask": 74,
|
85336
|
-
"Mathematica":
|
86202
|
+
"Mathematica": 3191,
|
85337
86203
|
"Matlab": 11942,
|
85338
86204
|
"Maven POM": 504,
|
85339
86205
|
"Max": 714,
|
85340
86206
|
"MediaWiki": 766,
|
85341
|
-
"Mercury":
|
86207
|
+
"Mercury": 31693,
|
85342
86208
|
"Monkey": 207,
|
85343
86209
|
"Moocode": 5234,
|
85344
86210
|
"MoonScript": 1718,
|
85345
86211
|
"NSIS": 725,
|
85346
86212
|
"Nemerle": 17,
|
85347
86213
|
"NetLogo": 243,
|
86214
|
+
"NewLisp": 2279,
|
85348
86215
|
"Nginx": 179,
|
85349
86216
|
"Nimrod": 1,
|
85350
86217
|
"Nit": 8703,
|
85351
|
-
"Nix":
|
86218
|
+
"Nix": 198,
|
85352
86219
|
"Nu": 116,
|
85353
86220
|
"OCaml": 382,
|
85354
86221
|
"Objective-C": 26518,
|
@@ -85370,7 +86237,7 @@
|
|
85370
86237
|
"Papyrus": 560,
|
85371
86238
|
"Parrot Assembly": 6,
|
85372
86239
|
"Parrot Internal Representation": 5,
|
85373
|
-
"Pascal":
|
86240
|
+
"Pascal": 955,
|
85374
86241
|
"Perl": 20690,
|
85375
86242
|
"Perl6": 12283,
|
85376
86243
|
"PigLatin": 30,
|
@@ -85378,7 +86245,7 @@
|
|
85378
86245
|
"Pod": 658,
|
85379
86246
|
"PogoScript": 250,
|
85380
86247
|
"PostScript": 107,
|
85381
|
-
"PowerShell":
|
86248
|
+
"PowerShell": 562,
|
85382
86249
|
"Processing": 74,
|
85383
86250
|
"Prolog": 7254,
|
85384
86251
|
"Propeller Spin": 13519,
|
@@ -85387,7 +86254,7 @@
|
|
85387
86254
|
"Puppet": 103,
|
85388
86255
|
"PureBasic": 867,
|
85389
86256
|
"PureScript": 1652,
|
85390
|
-
"Python":
|
86257
|
+
"Python": 7229,
|
85391
86258
|
"QMake": 119,
|
85392
86259
|
"R": 1790,
|
85393
86260
|
"RAML": 83,
|
@@ -85454,6 +86321,7 @@
|
|
85454
86321
|
"YAML": 77,
|
85455
86322
|
"Zephir": 1026,
|
85456
86323
|
"Zimpl": 123,
|
86324
|
+
"desktop": 70,
|
85457
86325
|
"edn": 227,
|
85458
86326
|
"fish": 636,
|
85459
86327
|
"wisp": 1363
|
@@ -85495,7 +86363,7 @@
|
|
85495
86363
|
"CoffeeScript": 9,
|
85496
86364
|
"ColdFusion": 1,
|
85497
86365
|
"ColdFusion CFC": 2,
|
85498
|
-
"Common Lisp":
|
86366
|
+
"Common Lisp": 4,
|
85499
86367
|
"Component Pascal": 2,
|
85500
86368
|
"Cool": 2,
|
85501
86369
|
"Coq": 12,
|
@@ -85512,7 +86380,7 @@
|
|
85512
86380
|
"ECL": 1,
|
85513
86381
|
"Eagle": 2,
|
85514
86382
|
"Elm": 3,
|
85515
|
-
"Emacs Lisp":
|
86383
|
+
"Emacs Lisp": 3,
|
85516
86384
|
"EmberScript": 1,
|
85517
86385
|
"Erlang": 5,
|
85518
86386
|
"F#": 8,
|
@@ -85521,7 +86389,7 @@
|
|
85521
86389
|
"Frege": 4,
|
85522
86390
|
"G-code": 4,
|
85523
86391
|
"GAMS": 1,
|
85524
|
-
"GAP":
|
86392
|
+
"GAP": 9,
|
85525
86393
|
"GAS": 1,
|
85526
86394
|
"GDScript": 4,
|
85527
86395
|
"GLSL": 8,
|
@@ -85583,18 +86451,19 @@
|
|
85583
86451
|
"Makefile": 2,
|
85584
86452
|
"Markdown": 1,
|
85585
86453
|
"Mask": 1,
|
85586
|
-
"Mathematica":
|
86454
|
+
"Mathematica": 7,
|
85587
86455
|
"Matlab": 39,
|
85588
86456
|
"Maven POM": 1,
|
85589
86457
|
"Max": 3,
|
85590
86458
|
"MediaWiki": 1,
|
85591
|
-
"Mercury":
|
86459
|
+
"Mercury": 10,
|
85592
86460
|
"Monkey": 1,
|
85593
86461
|
"Moocode": 3,
|
85594
86462
|
"MoonScript": 1,
|
85595
86463
|
"NSIS": 2,
|
85596
86464
|
"Nemerle": 1,
|
85597
86465
|
"NetLogo": 1,
|
86466
|
+
"NewLisp": 2,
|
85598
86467
|
"Nginx": 1,
|
85599
86468
|
"Nimrod": 1,
|
85600
86469
|
"Nit": 24,
|
@@ -85620,7 +86489,7 @@
|
|
85620
86489
|
"Papyrus": 3,
|
85621
86490
|
"Parrot Assembly": 1,
|
85622
86491
|
"Parrot Internal Representation": 1,
|
85623
|
-
"Pascal":
|
86492
|
+
"Pascal": 5,
|
85624
86493
|
"Perl": 17,
|
85625
86494
|
"Perl6": 21,
|
85626
86495
|
"PigLatin": 1,
|
@@ -85628,7 +86497,7 @@
|
|
85628
86497
|
"Pod": 1,
|
85629
86498
|
"PogoScript": 1,
|
85630
86499
|
"PostScript": 1,
|
85631
|
-
"PowerShell":
|
86500
|
+
"PowerShell": 3,
|
85632
86501
|
"Processing": 1,
|
85633
86502
|
"Prolog": 9,
|
85634
86503
|
"Propeller Spin": 10,
|
@@ -85704,9 +86573,10 @@
|
|
85704
86573
|
"YAML": 2,
|
85705
86574
|
"Zephir": 2,
|
85706
86575
|
"Zimpl": 1,
|
86576
|
+
"desktop": 1,
|
85707
86577
|
"edn": 1,
|
85708
86578
|
"fish": 3,
|
85709
86579
|
"wisp": 1
|
85710
86580
|
},
|
85711
|
-
"md5": "
|
86581
|
+
"md5": "e717a04e7ae4efb42a5c9b83a943636b"
|
85712
86582
|
}
|