autocolors 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.attic/colors.rb +308 -0
- data/.attic/colorscheme.rb +52 -0
- data/.attic/labtest.rb +39 -0
- data/.attic/sw2.erb +39 -0
- data/.attic/swatch.erb +39 -0
- data/.attic/swatch3.erb +14 -0
- data/.attic/test_swatch.rb +15 -0
- data/.attic/test_swatch2.rb +13 -0
- data/.yardopts +8 -0
- data/Gemfile +19 -0
- data/Gemfile.lock +40 -0
- data/LICENSE.txt +20 -0
- data/README.md +19 -0
- data/Rakefile +59 -0
- data/VERSION +1 -0
- data/analysis/textmate/textmate-in-the-wild.txt +586 -0
- data/analysis/vim/analyze-commonly-colored.sh +2 -0
- data/analysis/vim/analyze-mappings.rb +69 -0
- data/analysis/vim/common-mappings.list +1885 -0
- data/analysis/vim/commonly-colored.list +3160 -0
- data/analysis/vim/gather.sh +13 -0
- data/analysis/vim/statements.list +53490 -0
- data/autocolors.gemspec +101 -0
- data/format-samples/1/Sweyla866607.css +50 -0
- data/format-samples/1/Sweyla866607.tmTheme +255 -0
- data/format-samples/1/Sweyla866607.txt +40 -0
- data/format-samples/1/sweyla866607.el +27 -0
- data/format-samples/1/sweyla866607.vim +64 -0
- data/lib/VERSION +1 -0
- data/lib/autocolors/colors.rb +159 -0
- data/lib/autocolors/colorschemes.rb +121 -0
- data/lib/autocolors/mapping.udon +64 -0
- data/lib/autocolors/templates/colorscheme.vim +64 -0
- data/lib/autocolors.rb +6 -0
- data/notes +309 -0
- data/test/helper.rb +19 -0
- data/test/swatch.erb +19 -0
- data/test/test_autocolors.rb +7 -0
- metadata +190 -0
data/Rakefile
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
|
14
|
+
require 'jeweler'
|
15
|
+
Jeweler::Tasks.new do |gem|
|
16
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
|
+
gem.name = "autocolors"
|
18
|
+
gem.homepage = "http://github.com/josephwecker/autocolors"
|
19
|
+
gem.license = "MIT"
|
20
|
+
gem.summary = %Q{Automatically generates colorschemes (mostly for editors).}
|
21
|
+
gem.description = %Q{Inspired by solarized, and lots of work with various colorschemes and syntax highlight files, and driven by a need to have some color variety that doesn't stink. Tries to generate colorschemes with just the right contrast, variety, and coherence.}
|
22
|
+
gem.email = "joseph.wecker@gmail.com"
|
23
|
+
gem.authors = ["Joseph Wecker"]
|
24
|
+
# dependencies defined in Gemfile
|
25
|
+
end
|
26
|
+
Jeweler::RubygemsDotOrgTasks.new
|
27
|
+
|
28
|
+
require 'rake/testtask'
|
29
|
+
Rake::TestTask.new(:test) do |test|
|
30
|
+
test.libs << 'lib' << 'test'
|
31
|
+
test.pattern = 'test/**/test_*.rb'
|
32
|
+
test.verbose = true
|
33
|
+
end
|
34
|
+
|
35
|
+
require 'rcov/rcovtask'
|
36
|
+
Rcov::RcovTask.new do |test|
|
37
|
+
test.libs << 'test'
|
38
|
+
test.pattern = 'test/**/test_*.rb'
|
39
|
+
test.verbose = true
|
40
|
+
test.rcov_opts << '--exclude "gems/*"'
|
41
|
+
end
|
42
|
+
|
43
|
+
require 'reek/rake/task'
|
44
|
+
Reek::Rake::Task.new do |t|
|
45
|
+
t.fail_on_error = true
|
46
|
+
t.verbose = false
|
47
|
+
t.source_files = 'lib/**/*.rb'
|
48
|
+
end
|
49
|
+
|
50
|
+
require 'roodi'
|
51
|
+
require 'roodi_task'
|
52
|
+
RoodiTask.new do |t|
|
53
|
+
t.verbose = false
|
54
|
+
end
|
55
|
+
|
56
|
+
task :default => :test
|
57
|
+
|
58
|
+
require 'yard'
|
59
|
+
YARD::Rake::YardocTask.new
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
@@ -0,0 +1,586 @@
|
|
1
|
+
# Generated with:
|
2
|
+
# grep -A1 'scope</key>' /Applications/TextMate.app/Contents/SharedSupport/Themes/* \
|
3
|
+
# | egrep -o '<string>([^<]+)' | cut -d\> -f2 | tr ',' "\n" | sed 's/^ *//' | sort | uniq
|
4
|
+
|
5
|
+
0comment
|
6
|
+
comment
|
7
|
+
comment -comment.line
|
8
|
+
comment punctuation
|
9
|
+
comment.block
|
10
|
+
comment.line
|
11
|
+
comment.other.server-side-include.html
|
12
|
+
comment.other.server-side-include.xhtml
|
13
|
+
constant
|
14
|
+
constant.block
|
15
|
+
constant.character
|
16
|
+
constant.character.escape
|
17
|
+
constant.language
|
18
|
+
constant.language.boolean
|
19
|
+
constant.language.pseudo-variable
|
20
|
+
constant.name
|
21
|
+
constant.numeric
|
22
|
+
constant.numeric.floating-point
|
23
|
+
constant.numeric.floating-point.ocaml
|
24
|
+
constant.numeric.integer.int32
|
25
|
+
constant.numeric.integer.int64
|
26
|
+
constant.numeric.integer.nativeint
|
27
|
+
constant.other
|
28
|
+
constant.other.java
|
29
|
+
constant.other.placeholder.py
|
30
|
+
constant.other.rgb-value.css
|
31
|
+
constant.other.unit
|
32
|
+
declaration.class
|
33
|
+
declaration.class class-inheritance
|
34
|
+
declaration.class class-name
|
35
|
+
declaration.function
|
36
|
+
declaration.function argument-name
|
37
|
+
declaration.function function-arg-type
|
38
|
+
declaration.function function-argument
|
39
|
+
declaration.function function-name
|
40
|
+
declaration.function function-result
|
41
|
+
declaration.function.operator
|
42
|
+
declaration.module
|
43
|
+
declaration.section entity.name.section
|
44
|
+
declaration.section section-name
|
45
|
+
declaration.tag
|
46
|
+
declaration.tag entity
|
47
|
+
declaration.tag.inline
|
48
|
+
declaration.tag.inline entity
|
49
|
+
embedded
|
50
|
+
entity
|
51
|
+
entity.name
|
52
|
+
entity.name.class
|
53
|
+
entity.name.class.variant
|
54
|
+
entity.name.function
|
55
|
+
entity.name.function.frame
|
56
|
+
entity.name.function.non-terminal
|
57
|
+
entity.name.function.non-terminal.reference
|
58
|
+
entity.name.instance
|
59
|
+
entity.name.module
|
60
|
+
entity.name.preprocessor
|
61
|
+
entity.name.reference
|
62
|
+
entity.name.section
|
63
|
+
entity.name.tag
|
64
|
+
entity.name.tag.css
|
65
|
+
entity.name.tag.namespace
|
66
|
+
entity.name.tag.script
|
67
|
+
entity.name.tag.style
|
68
|
+
entity.name.tag.wildcard
|
69
|
+
entity.name.type
|
70
|
+
entity.name.type.class
|
71
|
+
entity.name.type.class-type
|
72
|
+
entity.name.type.class.type
|
73
|
+
entity.name.type.instance
|
74
|
+
entity.name.type.module
|
75
|
+
entity.name.type.module-type.ocaml
|
76
|
+
entity.name.type.token
|
77
|
+
entity.name.type.token.reference
|
78
|
+
entity.name.type.variant
|
79
|
+
entity.name.type.variant.polymorphic
|
80
|
+
entity.other.attribute-name
|
81
|
+
entity.other.attribute-name.class.css
|
82
|
+
entity.other.attribute-name.id.css
|
83
|
+
entity.other.attribute-name.namespace
|
84
|
+
entity.other.attribute-name.pseudo-class
|
85
|
+
entity.other.attribute-name.pseudo-class.css
|
86
|
+
entity.other.attribute-name.pseudo-element
|
87
|
+
entity.other.attribute-name.tag.pseudo-class
|
88
|
+
entity.other.attribute-name.universal
|
89
|
+
entity.other.django.tagbraces
|
90
|
+
entity.other.inherited-class
|
91
|
+
invalid
|
92
|
+
invalid -invalid.SOMETHING
|
93
|
+
invalid.SOMETHING
|
94
|
+
invalid.bad-comma.css
|
95
|
+
invalid.deprecated
|
96
|
+
invalid.deprecated.trailing-whitespace
|
97
|
+
invalid.illegal
|
98
|
+
keyword
|
99
|
+
keyword - keyword.operator
|
100
|
+
keyword.control
|
101
|
+
keyword.control.import
|
102
|
+
keyword.exception
|
103
|
+
keyword.markup.attribute-name
|
104
|
+
keyword.markup.element-name
|
105
|
+
keyword.operator
|
106
|
+
keyword.operator.arithmetic
|
107
|
+
keyword.operator.assignment
|
108
|
+
keyword.operator.comparison
|
109
|
+
keyword.operator.infix.floating-point.ocaml
|
110
|
+
keyword.operator.js
|
111
|
+
keyword.operator.logical
|
112
|
+
keyword.operator.prefix.floating-point.ocaml
|
113
|
+
keyword.other
|
114
|
+
keyword.other.decorator
|
115
|
+
keyword.other.directive
|
116
|
+
keyword.other.directive.line-number
|
117
|
+
keyword.other.include.php
|
118
|
+
keyword.other.name-of-parameter.objc
|
119
|
+
keyword.other.phpdoc.php
|
120
|
+
keyword.other.special-method
|
121
|
+
keyword.other.unit
|
122
|
+
keyword.other.unit.css
|
123
|
+
keyword.storage.php
|
124
|
+
keyword.type.variant
|
125
|
+
markup comment
|
126
|
+
markup markup -(markup meta.paragraph.list)
|
127
|
+
markup.bold
|
128
|
+
markup.changed
|
129
|
+
markup.deleted
|
130
|
+
markup.heading
|
131
|
+
markup.heading entity
|
132
|
+
markup.heading | markup.heading entity.name
|
133
|
+
markup.hr
|
134
|
+
markup.inserted
|
135
|
+
markup.italic
|
136
|
+
markup.link
|
137
|
+
markup.list
|
138
|
+
markup.list meta.paragraph
|
139
|
+
markup.quote
|
140
|
+
markup.quote markup.quote
|
141
|
+
markup.raw
|
142
|
+
markup.raw.block
|
143
|
+
markup.underline
|
144
|
+
markup.underline.link
|
145
|
+
meta.assertion
|
146
|
+
meta.attribute-match.css
|
147
|
+
meta.attribute-with-value
|
148
|
+
meta.begin-document.latex support.function
|
149
|
+
meta.begin-document.latex variable.parameter
|
150
|
+
meta.block.content.slate
|
151
|
+
meta.block.slate
|
152
|
+
meta.block.slate meta.block.slate
|
153
|
+
meta.block.slate meta.block.slate meta.block.slate
|
154
|
+
meta.block.slate meta.block.slate meta.block.slate meta.block.slate
|
155
|
+
meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate
|
156
|
+
meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate
|
157
|
+
meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate
|
158
|
+
meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate
|
159
|
+
meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate meta.block.slate
|
160
|
+
meta.brace.curly
|
161
|
+
meta.brace.curly meta.group
|
162
|
+
meta.brace.curly meta.group.css
|
163
|
+
meta.brace.curly.function
|
164
|
+
meta.brace.erb
|
165
|
+
meta.brace.erb.html
|
166
|
+
meta.brace.erb.return-value
|
167
|
+
meta.brace.pipe
|
168
|
+
meta.brace.round
|
169
|
+
meta.brace.square
|
170
|
+
meta.cast
|
171
|
+
meta.class -meta.class.instance
|
172
|
+
meta.class.instance.constructor
|
173
|
+
meta.class.instance.constructor keyword.operator.new
|
174
|
+
meta.constructor.argument.css
|
175
|
+
meta.definition.class
|
176
|
+
meta.definition.method
|
177
|
+
meta.definition.method meta.definition.param-list
|
178
|
+
meta.definition.range -punctuation.definition.constant.range
|
179
|
+
meta.delimiter
|
180
|
+
meta.delimiter.object.js
|
181
|
+
meta.delimiter.statement.js
|
182
|
+
meta.diff
|
183
|
+
meta.diff.header
|
184
|
+
meta.doctype
|
185
|
+
meta.end-document.latex support.function
|
186
|
+
meta.end-document.latex variable.parameter
|
187
|
+
meta.even-tab.group10
|
188
|
+
meta.even-tab.group2
|
189
|
+
meta.even-tab.group4
|
190
|
+
meta.even-tab.group6
|
191
|
+
meta.even-tab.group8
|
192
|
+
meta.footnote
|
193
|
+
meta.function
|
194
|
+
meta.function -(meta.tell-block)
|
195
|
+
meta.function markup
|
196
|
+
meta.function meta.group.braces.curly.function -(meta.group meta.group)
|
197
|
+
meta.function meta.odd-tab.group1
|
198
|
+
meta.function-call
|
199
|
+
meta.function-call entity.name.function -(meta.function-call meta.function)
|
200
|
+
meta.function-call punctuation.section.scope.ruby
|
201
|
+
meta.function-call punctuation.separator.object
|
202
|
+
meta.function-call support.function - variable
|
203
|
+
meta.function-call.method.without-arguments
|
204
|
+
meta.function-call.method.without-arguments entity.name.function
|
205
|
+
meta.function-call.py
|
206
|
+
meta.function.method.with-arguments variable.parameter.function
|
207
|
+
meta.function.section
|
208
|
+
meta.group.assertion keyword.control.group.regexp
|
209
|
+
meta.group.assertion punctuation.definition.group
|
210
|
+
meta.group.assertion.regexp
|
211
|
+
meta.group.braces
|
212
|
+
meta.group.braces meta.group.braces
|
213
|
+
meta.group.braces meta.group.braces meta.group.braces
|
214
|
+
meta.group.braces meta.group.braces meta.group.braces
|
215
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
216
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
217
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
218
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
219
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
220
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
221
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
222
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
223
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
224
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
225
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
226
|
+
meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces meta.group.braces
|
227
|
+
meta.group.braces.curly meta.delimiter.object.comma
|
228
|
+
meta.group.braces.curly punctuation.section.scope
|
229
|
+
meta.group.braces.round meta.delimiter.object.comma
|
230
|
+
meta.group.braces.round punctuation.section.scope
|
231
|
+
meta.group.braces.square meta.delimiter.object.comma
|
232
|
+
meta.group.braces.square punctuation.section.scope
|
233
|
+
meta.header.blog keyword.other
|
234
|
+
meta.header.blog string.unquoted.blog
|
235
|
+
meta.header.mail keyword.other
|
236
|
+
meta.header.mail string.unquoted
|
237
|
+
meta.headers.blog
|
238
|
+
meta.headers.blog keyword.other.blog
|
239
|
+
meta.headers.blog string.unquoted.blog
|
240
|
+
meta.line.entry.logfile
|
241
|
+
meta.line.error.logfile
|
242
|
+
meta.line.exit.logfile
|
243
|
+
meta.odd-tab.group1
|
244
|
+
meta.odd-tab.group10
|
245
|
+
meta.odd-tab.group11
|
246
|
+
meta.odd-tab.group3
|
247
|
+
meta.odd-tab.group5
|
248
|
+
meta.odd-tab.group7
|
249
|
+
meta.odd-tab.group9
|
250
|
+
meta.paren-group
|
251
|
+
meta.paren-group meta.paren-group
|
252
|
+
meta.paren-group meta.paren-group meta.paren-group
|
253
|
+
meta.paren-group meta.paren-group meta.paren-group meta.paren-group
|
254
|
+
meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group
|
255
|
+
meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group
|
256
|
+
meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group
|
257
|
+
meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group
|
258
|
+
meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group meta.paren-group
|
259
|
+
meta.preprocessor
|
260
|
+
meta.preprocessor.at-rule keyword.control.at-rule
|
261
|
+
meta.preprocessor.c
|
262
|
+
meta.preprocessor.c keyword
|
263
|
+
meta.preprocessor.c.include
|
264
|
+
meta.property-group support.constant.property-value.css
|
265
|
+
meta.property-name
|
266
|
+
meta.property-value
|
267
|
+
meta.property-value constant
|
268
|
+
meta.property-value support.constant.named-color.css
|
269
|
+
meta.property-value support.constant.property-value.css
|
270
|
+
meta.property.function
|
271
|
+
meta.property.vendor.microsoft.trident.4
|
272
|
+
meta.property.vendor.microsoft.trident.5
|
273
|
+
meta.reference
|
274
|
+
meta.reference.list markup.underline.link
|
275
|
+
meta.scope.django.template
|
276
|
+
meta.scope.heredoc
|
277
|
+
meta.scope.property-list
|
278
|
+
meta.section
|
279
|
+
meta.section entity.name.section
|
280
|
+
meta.section meta.section
|
281
|
+
meta.section meta.section meta.section
|
282
|
+
meta.section meta.section meta.section meta.section
|
283
|
+
meta.section meta.section meta.section meta.section meta.section
|
284
|
+
meta.section meta.section meta.section meta.section meta.section meta.section
|
285
|
+
meta.section meta.section meta.section meta.section meta.section meta.section meta.section
|
286
|
+
meta.section meta.section meta.section meta.section meta.section meta.section meta.section meta.section
|
287
|
+
meta.section meta.section meta.section meta.section meta.section meta.section meta.section meta.section meta.section
|
288
|
+
meta.section.html.form
|
289
|
+
meta.section.html.head
|
290
|
+
meta.selector
|
291
|
+
meta.selector entity.name.tag
|
292
|
+
meta.selector entity.other.attribute-name.class
|
293
|
+
meta.selector entity.other.attribute-name.id
|
294
|
+
meta.selector.css entity.name.tag
|
295
|
+
meta.selector.css entity.other.attribute-name.class
|
296
|
+
meta.selector.css entity.other.attribute-name.id
|
297
|
+
meta.selector.css entity.other.attribute-name.tag.pseudo-class
|
298
|
+
meta.separator
|
299
|
+
meta.sgml.html meta.doctype
|
300
|
+
meta.sgml.html meta.doctype entity
|
301
|
+
meta.sgml.html meta.doctype string
|
302
|
+
meta.source.embedded
|
303
|
+
meta.structure.array -punctuation.definition.array
|
304
|
+
meta.subtlegradient
|
305
|
+
meta.syntax
|
306
|
+
meta.tag
|
307
|
+
meta.tag entity
|
308
|
+
meta.tag punctuation.definition.string
|
309
|
+
meta.tag source string
|
310
|
+
meta.tag string -source -punctuation
|
311
|
+
meta.tag.block
|
312
|
+
meta.tag.block.form
|
313
|
+
meta.tag.block.script
|
314
|
+
meta.tag.form
|
315
|
+
meta.tag.inline
|
316
|
+
meta.tag.inline entity
|
317
|
+
meta.tag.inline source
|
318
|
+
meta.tag.key
|
319
|
+
meta.tag.meta
|
320
|
+
meta.tag.other
|
321
|
+
meta.tag.preprocessor.xml
|
322
|
+
meta.tag.preprocessor.xml entity
|
323
|
+
meta.tag.preprocessor.xml string
|
324
|
+
meta.tag.segment
|
325
|
+
meta.tag.sgml-declaration.doctype
|
326
|
+
meta.tag.sgml.doctype
|
327
|
+
meta.tag.sgml.doctype entity
|
328
|
+
meta.tag.sgml.doctype string
|
329
|
+
meta.tag.structure
|
330
|
+
meta.tag.xml
|
331
|
+
meta.tell-block meta.tell-block
|
332
|
+
meta.tell-block meta.tell-block meta.tell-block
|
333
|
+
meta.tell-block meta.tell-block meta.tell-block meta.tell-block
|
334
|
+
meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block
|
335
|
+
meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block
|
336
|
+
meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block
|
337
|
+
meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block
|
338
|
+
meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block meta.tell-block
|
339
|
+
meta.thomas_aylott
|
340
|
+
meta.verbatim
|
341
|
+
meta.xml-processing
|
342
|
+
meta.xml-processing entity
|
343
|
+
meta.xml-processing string
|
344
|
+
object.property.function
|
345
|
+
other.preprocessor
|
346
|
+
punctuation
|
347
|
+
punctuation - (punctuation.definition.string | punctuation.definition.comment)
|
348
|
+
punctuation.definition
|
349
|
+
punctuation.definition -punctuation.definition.comment
|
350
|
+
punctuation.definition.arguments
|
351
|
+
punctuation.definition.array
|
352
|
+
punctuation.definition.constant.range
|
353
|
+
punctuation.definition.function
|
354
|
+
punctuation.definition.parameters
|
355
|
+
punctuation.definition.string -meta.tag
|
356
|
+
punctuation.section.array
|
357
|
+
punctuation.section.dictionary
|
358
|
+
punctuation.section.embedded -(source string source punctuation.section.embedded)
|
359
|
+
punctuation.section.function
|
360
|
+
punctuation.section.scope
|
361
|
+
punctuation.section.scope.curly
|
362
|
+
punctuation.separator
|
363
|
+
punctuation.separator.arguments
|
364
|
+
punctuation.separator.array
|
365
|
+
punctuation.separator.function-definition
|
366
|
+
punctuation.separator.function-return
|
367
|
+
punctuation.separator.key-value -meta.tag
|
368
|
+
punctuation.separator.key-value.css
|
369
|
+
punctuation.separator.method
|
370
|
+
punctuation.separator.object
|
371
|
+
punctuation.separator.objects
|
372
|
+
punctuation.separator.operator
|
373
|
+
punctuation.separator.parameters
|
374
|
+
punctuation.separator.parameters.function.js
|
375
|
+
punctuation.separator.statement
|
376
|
+
punctuation.separator.variable
|
377
|
+
punctuation.terminator
|
378
|
+
punctuation.terminator.dictionary
|
379
|
+
punctuation.terminator.statement
|
380
|
+
source
|
381
|
+
source comment.block
|
382
|
+
source entity.name.tag
|
383
|
+
source entity.other.attribute-name
|
384
|
+
source entity.other.attribute-name -text.html.basic.embedded
|
385
|
+
source source
|
386
|
+
source string source
|
387
|
+
source string source punctuation.section.embedded
|
388
|
+
source string.interpolated source
|
389
|
+
source.camlp4.embedded
|
390
|
+
source.camlp4.embedded.parser.ocaml
|
391
|
+
source.css
|
392
|
+
source.css entity.other.attribute-name.attribute
|
393
|
+
source.css meta.attribute-selector keyword.operator.comparison
|
394
|
+
source.css meta.scope.property-list meta.property-value punctuation.definition.arguments
|
395
|
+
source.css.embedded punctuation.definition.tag.html
|
396
|
+
source.java.embedded
|
397
|
+
source.js meta.group.braces.round
|
398
|
+
source.js.embedded
|
399
|
+
source.js.embedded punctuation.definition.tag.html
|
400
|
+
source.ocaml constant.numeric.floating-point
|
401
|
+
source.ocaml entity.name.tag
|
402
|
+
source.ocaml entity.name.type.module
|
403
|
+
source.ocaml keyword.operator
|
404
|
+
source.ocaml keyword.operator.symbol
|
405
|
+
source.ocaml keyword.operator.symbol.infix
|
406
|
+
source.ocaml keyword.operator.symbol.infix.floating-point
|
407
|
+
source.ocaml keyword.operator.symbol.prefix
|
408
|
+
source.ocaml keyword.operator.symbol.prefix.floating-point
|
409
|
+
source.ocaml keyword.other.directive.line-number
|
410
|
+
source.ocaml meta.record.definition
|
411
|
+
source.ocaml support.other.module
|
412
|
+
source.plist keyword.operator
|
413
|
+
source.plist string.unquoted
|
414
|
+
source.regexp keyword.operator
|
415
|
+
source.ruby meta.even-tab
|
416
|
+
source.ruby meta.even-tab.group10
|
417
|
+
source.ruby meta.even-tab.group12
|
418
|
+
source.ruby meta.even-tab.group2
|
419
|
+
source.ruby meta.even-tab.group4
|
420
|
+
source.ruby meta.even-tab.group6
|
421
|
+
source.ruby meta.even-tab.group8
|
422
|
+
source.ruby.embedded.source.brace
|
423
|
+
source.ruby.rails.embedded.one-line
|
424
|
+
source.ruby.rails.embedded.return-value.one-line
|
425
|
+
storage
|
426
|
+
storage -storage.modifier
|
427
|
+
storage.modifier
|
428
|
+
storage.type
|
429
|
+
storage.type.method
|
430
|
+
storage.type.user-defined
|
431
|
+
storage.type.variant.polymorphic
|
432
|
+
string
|
433
|
+
string -meta.tag -meta.doctype -string.regexp -string.literal -string.interpolated -string.quoted.literal -string.unquoted
|
434
|
+
string -string.unquoted.old-plist -string.unquoted.heredoc
|
435
|
+
string constant
|
436
|
+
string constant.character.escape
|
437
|
+
string constant.other.placeholder
|
438
|
+
string source
|
439
|
+
string variable
|
440
|
+
string | punctuation.definition.string
|
441
|
+
string.interpolated
|
442
|
+
string.interpolated constant.character.escape
|
443
|
+
string.interpolated string
|
444
|
+
string.interpolation
|
445
|
+
string.literal
|
446
|
+
string.quoted source
|
447
|
+
string.quoted.docinfo.doctype.DTD
|
448
|
+
string.quoted.double.brace
|
449
|
+
string.quoted.double.include
|
450
|
+
string.quoted.double.multiline
|
451
|
+
string.quoted.double.php
|
452
|
+
string.quoted.double.ruby.mod
|
453
|
+
string.quoted.double.ruby.mod punctuation.definition.string
|
454
|
+
string.quoted.literal
|
455
|
+
string.quoted.literal punctuation.definition.string
|
456
|
+
string.quoted.other.lt-gt.include
|
457
|
+
string.quoted.single.brace
|
458
|
+
string.quoted.single.php
|
459
|
+
string.regexp
|
460
|
+
string.regexp comment
|
461
|
+
string.regexp constant.character.escape
|
462
|
+
string.regexp constant.character.escaped
|
463
|
+
string.regexp punctuation.definition.string
|
464
|
+
string.regexp punctuation.definition.string keyword.other
|
465
|
+
string.regexp source.ruby.embedded
|
466
|
+
string.regexp string
|
467
|
+
string.regexp string.regexp.arbitrary-repitition
|
468
|
+
string.regexp.arbitrary-repitition
|
469
|
+
string.regexp.character-class
|
470
|
+
string.regexp.group
|
471
|
+
string.regexp.group string.regexp.group
|
472
|
+
string.regexp.group string.regexp.group string.regexp.group
|
473
|
+
string.regexp.group string.regexp.group string.regexp.group string.regexp.group
|
474
|
+
string.unquoted
|
475
|
+
string.unquoted -string.unquoted.embedded
|
476
|
+
string.unquoted string
|
477
|
+
string.unquoted.heredoc
|
478
|
+
string.unquoted.heredoc string
|
479
|
+
support
|
480
|
+
support.class
|
481
|
+
support.class.exception
|
482
|
+
support.constant
|
483
|
+
support.constant.core.php
|
484
|
+
support.constant.font-name.css
|
485
|
+
support.constant.name.tm-language-def
|
486
|
+
support.constant.property-value.css
|
487
|
+
support.constant.std.php
|
488
|
+
support.constant.tm-language-def
|
489
|
+
support.function
|
490
|
+
support.function - variable
|
491
|
+
support.function.any-method
|
492
|
+
support.function.any-method - punctuation
|
493
|
+
support.other
|
494
|
+
support.other.module
|
495
|
+
support.other.variable
|
496
|
+
support.type
|
497
|
+
support.type.exception
|
498
|
+
support.type.property-name
|
499
|
+
support.type.property-name.css
|
500
|
+
support.variable
|
501
|
+
text
|
502
|
+
text -text.xml.strict
|
503
|
+
text comment.block -source
|
504
|
+
text meta.paragraph
|
505
|
+
text source
|
506
|
+
text source string.unquoted
|
507
|
+
text source text meta.tag string -punctuation
|
508
|
+
text source text source
|
509
|
+
text string source
|
510
|
+
text string source string
|
511
|
+
text string source string source
|
512
|
+
text.blog
|
513
|
+
text.blog -(text.blog text)
|
514
|
+
text.blog text
|
515
|
+
text.html declaration.tag
|
516
|
+
text.html entity.name.tag.xhtml
|
517
|
+
text.html meta.tag
|
518
|
+
text.html source
|
519
|
+
text.html.markdown
|
520
|
+
text.html.markdown markup.heading
|
521
|
+
text.html.markdown markup.list meta.paragraph
|
522
|
+
text.html.markdown meta.paragraph
|
523
|
+
text.html.markdown string
|
524
|
+
text.html.ruby source
|
525
|
+
text.html.textile markup.underline.link
|
526
|
+
text.latex
|
527
|
+
text.latex constant.language.general
|
528
|
+
text.latex entity.name.section -meta.group -keyword.operator.braces
|
529
|
+
text.latex keyword.control.cite
|
530
|
+
text.latex keyword.control.ref
|
531
|
+
text.latex keyword.operator.braces
|
532
|
+
text.latex keyword.operator.brackets
|
533
|
+
text.latex keyword.operator.delimiter
|
534
|
+
text.latex markup.raw
|
535
|
+
text.latex meta.begin-document
|
536
|
+
text.latex meta.end-document
|
537
|
+
text.latex meta.environment.list
|
538
|
+
text.latex meta.environment.list meta.environment.list
|
539
|
+
text.latex meta.environment.list meta.environment.list meta.environment.list
|
540
|
+
text.latex meta.environment.list meta.environment.list meta.environment.list meta.environment.list
|
541
|
+
text.latex meta.environment.list meta.environment.list meta.environment.list meta.environment.list meta.environment.list
|
542
|
+
text.latex meta.environment.list meta.environment.list meta.environment.list meta.environment.list meta.environment.list meta.environment.list
|
543
|
+
text.latex meta.group.braces
|
544
|
+
text.latex meta.label.reference
|
545
|
+
text.latex support.function -support.function.textit -support.function.emph
|
546
|
+
text.latex support.function.section
|
547
|
+
text.latex variable.parameter.label
|
548
|
+
text.latex variable.parameter.label.reference
|
549
|
+
text.mail
|
550
|
+
text.mail text
|
551
|
+
text.subversion-commit
|
552
|
+
text.subversion-commit meta.scope.changed-files
|
553
|
+
text.subversion-commit meta.scope.changed-files.svn meta.diff.separator
|
554
|
+
text.tex.latex entity
|
555
|
+
text.tex.latex meta.function.environment
|
556
|
+
text.tex.latex meta.function.environment meta.function.environment
|
557
|
+
text.tex.latex support.function
|
558
|
+
text.xml.strict meta.tag
|
559
|
+
text.xml.strict meta.tag meta.tag
|
560
|
+
text.xml.strict meta.tag meta.tag meta.tag
|
561
|
+
text.xml.strict meta.tag meta.tag meta.tag meta.tag
|
562
|
+
text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag
|
563
|
+
text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag
|
564
|
+
text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag
|
565
|
+
text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag
|
566
|
+
text.xml.strict meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag meta.tag
|
567
|
+
variable
|
568
|
+
variable.js
|
569
|
+
variable.language
|
570
|
+
variable.language.this.js
|
571
|
+
variable.other
|
572
|
+
variable.other.constant
|
573
|
+
variable.other.global.php
|
574
|
+
variable.other.global.safer.php
|
575
|
+
variable.other.normal
|
576
|
+
variable.other.php
|
577
|
+
variable.other.readwrite.class
|
578
|
+
variable.other.readwrite.global
|
579
|
+
variable.other.readwrite.global.pre-defined
|
580
|
+
variable.other.readwrite.instance
|
581
|
+
variable.parameter
|
582
|
+
variable.parameter -variable.parameter.misc.css
|
583
|
+
variable.parameter.cite
|
584
|
+
variable.parameter.function
|
585
|
+
variable.parameter.function punctuation.separator.object
|
586
|
+
variable.parameter.misc.css
|