-
-
Save FichteFoll/986bfd00864c7def37bf to your computer and use it in GitHub Desktop.
Download color schemes and count the occuring atomic scopes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import requests | |
import plistlib | |
from collections import Counter | |
import posixpath | |
from urllib.parse import urlsplit | |
import sys | |
import os | |
standard_scopes = [ | |
"comment", | |
"comment.line", | |
"comment.double-slash", | |
"comment.double-dash", | |
"comment.number-sign", | |
"comment.percentage", | |
"comment.character", | |
"comment.block", | |
"comment.documentation", | |
"constant", | |
"constant.numeric", | |
"constant.character", | |
"constant.escape", | |
"constant.language", | |
"constant.other", | |
"entity", | |
"entity.name", | |
"entity.function", | |
"entity.type", | |
"entity.tag", | |
"entity.section", | |
"entity.other", | |
"entity.inherited-class", | |
"entity.attribute-name", | |
"invalid", | |
"invalid.illegal", | |
"invalid.deprecated", | |
"keyword", | |
"keyword.control", | |
"keyword.operator", | |
"keyword.other", | |
"markup", | |
"markup.underline", | |
"markup.link", | |
"markup.bold", | |
"markup.heading", | |
"markup.italic", | |
"markup.list", | |
"markup.numbered", | |
"markup.unnumbered", | |
"markup.quote", | |
"markup.raw", | |
"markup.other", | |
"meta", | |
"storage", | |
"storage.type", | |
"storage.modifier", | |
"string", | |
"string.quoted", | |
"string.single", | |
"string.double", | |
"string.triple", | |
"string.other", | |
"string.unquoted", | |
"string.interpolated", | |
"string.regexp", | |
"string.other", | |
"support", | |
"support.function", | |
"support.class", | |
"support.type", | |
"support.constant", | |
"support.variable", | |
"support.other", | |
"variable", | |
"variable.parameter", | |
"variable.language", | |
"variable.other", | |
] | |
r = requests.get('https://raw.githubusercontent.com/aziz/tmTheme-Editor/master/public/gallery.json') | |
if r.status_code != 200: | |
print("Failure, status code:", r.status_code) | |
sys.exit(1) | |
scopes = Counter() | |
parsed = 0 | |
for theme in r.json(): | |
name = theme['name'] # .encode(sys.stdout.encoding or 'ascii', errors='replace') | |
path = urlsplit(theme['url']).path | |
filename = posixpath.basename(path) | |
if os.path.exists(filename): | |
with open(filename, "r", encoding='utf-8') as theme_file: | |
theme_contents = theme_file.read() | |
else: | |
print("Downloading", name, "from", theme['url']) | |
theme_request = requests.get(theme['url']) | |
if theme_request.status_code != 200: | |
print("Failed to download", name, ", status code:", theme_request.status_code) | |
continue | |
theme_contents = theme_request.text | |
with open(filename, "w", encoding='utf-8') as theme_file: | |
theme_file.write(theme_contents) | |
try: | |
plist = plistlib.readPlistFromBytes(theme_contents.encode('utf-8')) | |
except Exception as e: | |
print("Failed to parse", name, "-", str(e)) | |
continue | |
if 'settings' in plist: | |
for setting in plist['settings']: | |
if 'scope' in setting: | |
for i in setting['scope'].split(','): | |
for l in i.strip().split(' -'): | |
for k in l.strip().split(' '): | |
# There are various "cc0x" scopes that sophisticate our data | |
if len(k) > 0 and not k.startswith("cc0x"): | |
scopes[k] += 1 | |
print("Parsed", name) | |
parsed += 1 | |
with open("results.txt", 'w') as f: | |
f.write("Analyzed %d color schemes and found %d different atomic scopes\n" | |
% (parsed, len(scopes))) | |
total_occurences = 0 | |
standard_occurences = 0 | |
for s, c in scopes.most_common(): | |
total_occurences += c | |
if s in standard_scopes: | |
standard_occurences += c | |
f.write("%d : %s%s\n" % (c, s, " [std]" if s in standard_scopes else "")) | |
f.write("Out of %d total scope occurences, %d are from standard scopes and fall onto %d scope names" | |
% (total_occurences, standard_occurences, len(standard_scopes))) | |
print("Written output to results.txt") | |
with open("results_alpha.txt", 'w') as f: | |
f.write("Analyzed %d color schemes and found %d different atomic scopes\n" | |
% (parsed, len(scopes))) | |
for s in sorted(scopes): | |
f.write("%6s%s : %d\n" % ("[std] " if s in standard_scopes else "", s, scopes[s])) | |
print("Written output to results_alpha.txt") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Analyzed 229 color schemes and found 1213 different atomic scopes | |
574 : string [std] | |
311 : source | |
278 : entity [std] | |
253 : keyword [std] | |
242 : comment [std] | |
236 : entity.name.tag | |
229 : constant [std] | |
212 : support.function [std] | |
209 : storage [std] | |
209 : entity.other.attribute-name | |
199 : entity.other.inherited-class | |
196 : variable [std] | |
192 : meta [std] | |
191 : string.regexp [std] | |
181 : constant.numeric [std] | |
172 : entity.name.function | |
169 : meta.selector.css | |
167 : meta.tag | |
158 : support.constant [std] | |
149 : support.class [std] | |
141 : invalid [std] | |
138 : markup.deleted | |
136 : markup.inserted | |
134 : constant.language [std] | |
131 : meta.property-value | |
131 : variable.parameter [std] | |
130 : markup.heading [std] | |
128 : none | |
128 : entity.name.class | |
121 : markup.changed | |
119 : support.type [std] | |
113 : text | |
104 : constant.character.escape | |
102 : punctuation.definition.string | |
96 : keyword.operator [std] | |
96 : support.constant.property-value.css | |
95 : meta.diff.header | |
93 : constant.character [std] | |
92 : constant.other [std] | |
91 : declaration.tag | |
85 : entity.other.attribute-name.id | |
83 : markup.list [std] | |
82 : invalid.deprecated [std] | |
81 : meta.tag.preprocessor.xml | |
80 : markup.quote [std] | |
80 : meta.structure.dictionary.json | |
80 : meta.separator | |
79 : entity.name.section | |
79 : meta.diff | |
78 : meta.tag.sgml.doctype | |
76 : variable.other [std] | |
75 : support.other.variable | |
72 : invalid.illegal [std] | |
70 : punctuation.section.embedded | |
69 : markup.italic [std] | |
69 : markup.bold [std] | |
66 : support [std] | |
65 : support.type.property-name.css | |
65 : variable.language [std] | |
63 : entity.name.type.class | |
60 : string.quoted.double.json | |
58 : meta.doctype | |
57 : storage.type [std] | |
53 : text.html.basic | |
53 : meta.xml-processing | |
52 : string.other.link | |
51 : keyword.other.special-method | |
51 : keyword.other.unit | |
50 : constant.other.symbol | |
50 : meta.preprocessor.c | |
50 : meta.structure.dictionary.value.json | |
49 : meta.sgml.html | |
49 : entity.name.type | |
48 : entity.other.attribute-name.class | |
48 : markup.raw.inline | |
48 : constant.other.color | |
46 : source.diff | |
45 : punctuation | |
44 : meta.tag.inline | |
43 : declaration.doctype | |
43 : declaration.xml-processing | |
43 : punctuation.definition.variable | |
43 : keyword.control.at-rule | |
42 : meta.property-group | |
40 : support.constant.named-color.css | |
39 : punctuation.definition.comment | |
39 : support.function.any-method | |
39 : meta.selector | |
38 : text.html.ruby | |
38 : string.unquoted [std] | |
38 : meta.preprocessor.at-rule | |
37 : meta.constructor.argument.css | |
36 : markup.raw [std] | |
36 : meta.structure.array.json | |
36 : declaration.sgml.html | |
35 : punctuation.definition.italic | |
35 : entity.name.tag.css | |
35 : keyword.control [std] | |
34 : punctuation.definition.parameters | |
34 : variable.parameter.function | |
34 : punctuation.definition.heading | |
34 : source.ocaml | |
33 : meta.class | |
33 : meta.require | |
33 : punctuation.definition.array | |
33 : punctuation.definition.entity | |
33 : variable.interpolation | |
33 : meta.link | |
33 : punctuation.definition.bold | |
32 : source.json | |
32 : meta.function-call | |
32 : string.quoted [std] | |
31 : markup.underline [std] | |
30 : entity.other.attribute-name.class.css | |
30 : source.css | |
27 : support.variable [std] | |
27 : entity.other.attribute-name.id.css | |
27 : string.regexp.arbitrary-repitition | |
27 : source.python | |
26 : entity.name [std] | |
25 : keyword.operator.js | |
25 : source.ruby.embedded | |
24 : entity.other.attribute-name.tag.pseudo-class | |
23 : meta.section | |
23 : other.preprocessor.c | |
23 : punctuation.definition.tag | |
23 : entity.other.attribute-name.pseudo-class.css | |
23 : comment.block [std] | |
22 : storage.modifier [std] | |
22 : markup.deleted.diff | |
22 : markup.inserted.diff | |
22 : text.html.markdown | |
22 : meta.preprocessor | |
21 : keyword.control.import | |
21 : punctuation.definition.tag.html | |
20 : storage.type.method | |
20 : invalid.deprecated.trailing-whitespace | |
20 : string.quoted.double.html | |
19 : source.ruby | |
19 : constant.other.color.rgb-value.css | |
19 : string.interpolated [std] | |
19 : meta.diff.range | |
19 : meta.property-value.css | |
19 : declaration.section | |
19 : meta.structure.dictionary | |
19 : entity.name.filename.find-in-files | |
18 : keyword.other.unit.css | |
18 : constant.numeric.line-number.find-in-files | |
17 : meta.property-name.css | |
17 : keyword.other.name-of-parameter.objc | |
17 : punctuation.definition.tag.end | |
17 : match | |
17 : constant.character.escaped | |
17 : punctuation.definition.tag.begin | |
16 : text.tex.latex | |
16 : meta.diff.header.from-file | |
16 : declaration.tag.inline | |
16 : meta.diff.header.to-file | |
16 : keyword.operator.class | |
16 : entity.other.attribute-name.html | |
15 : markup [std] | |
14 : meta.line.exit.logfile | |
14 : constant.numeric.css | |
14 : punctuation.definition.string.end | |
14 : meta.line.entry.logfile | |
14 : source.js | |
14 : sublimelinter.outline.warning | |
14 : sublimelinter.underline.warning | |
14 : sublimelinter.underline.illegal | |
14 : meta.line.error.logfile | |
14 : sublimelinter.outline.illegal | |
14 : sublimelinter.outline.violation | |
14 : punctuation.definition.string.begin | |
13 : entity.other.attribute-name.namespace | |
13 : source.css.embedded.html | |
13 : support.function.construct.php | |
13 : sublimelinter.underline.violation | |
13 : keyword.other.special-method.ruby | |
13 : meta.diff.index | |
13 : meta.preprocessor.c.include | |
13 : string.quoted.docinfo.doctype.DTD | |
13 : meta.separator.diff | |
13 : entity.name.tag.namespace | |
13 : variable.other.constant | |
13 : punctuation.definition.string.begin.html | |
12 : string.unquoted.heredoc | |
12 : source.ruby.embedded.source | |
12 : meta.block-level | |
12 : source.js.embedded.html | |
12 : meta.tag.structure.any.html | |
12 : constant.character.entity | |
12 : meta.cast | |
12 : variable.assignment.coffee | |
12 : punctuation.section.embedded.ruby | |
12 : punctuation.definition.inserted.diff | |
12 : source.php.embedded.line | |
11 : markup.heading.markdown | |
11 : meta.embedded | |
11 : entity.other.less.mixin | |
10 : meta.brace.erb.html | |
10 : meta.diff.range.unified | |
10 : punctuation.section.embedded.begin.php | |
10 : entity.other.attribute-name.pseudo-element.css | |
10 : support.class.js | |
10 : meta.raw.block.restructuredtext | |
10 : punctuation.section.property-list.css | |
10 : source.scss | |
10 : support.function.construct | |
10 : entity.name.tag.style.html | |
9 : meta.function.environment | |
9 : punctuation.definition.blockquote.markdown | |
9 : storage.type.function.js | |
9 : variable.other.property | |
9 : constant.other.general.math.tex | |
9 : markup.changed.diff | |
9 : punctuation.section.embedded.end.php | |
9 : punctuation.definition.raw.markdown | |
9 : punctuation.definition.string.end.html | |
9 : string.regexp.character-class | |
9 : meta.dummy.line-break | |
9 : markup.raw.inline.markdown | |
8 : variable.other.less | |
8 : keyword.other.important.css | |
8 : markup.underline.link | |
8 : source.plist | |
8 : punctuation.section.embedded) | |
8 : (source | |
8 : meta.tag.inline.any.html | |
8 : constant.character.entity.html | |
8 : punctuation.definition.link.restructuredtext | |
8 : variable.language.js | |
8 : keyword.operator.symbol.infix.floating-point | |
8 : support.type.exception | |
8 : keyword.control.at-rule.import.css | |
8 : punctuation.definition.list_item.markdown | |
8 : keyword.operator.symbol.prefix.floating-point | |
8 : punctuation.terminator.rule.css | |
8 : entity.other [std] | |
8 : string.literal | |
8 : comment.block.html | |
7 : punctuation.section.embedded.begin | |
7 : source.css.less | |
7 : meta.attribute-selector.css | |
7 : constant.other.symbol.ruby | |
7 : source.shell | |
7 : string.quoted.single.html | |
7 : meta.structure.dictionary.value | |
7 : meta.image.inline.markdown | |
7 : keyword.control.ruby | |
7 : string.quoted.single | |
7 : punctuation.section.embedded.end | |
7 : storage.type.js | |
7 : entity.name.tag.script.html | |
7 : meta.function-call.object.php | |
7 : keyword.control.js | |
7 : constant.numeric.floating-point | |
7 : support.class.ruby | |
7 : keyword.other.phpdoc | |
7 : support.constant.property-value | |
7 : text.html | |
7 : sublimelinter.outline.notes | |
7 : meta.verbatim | |
7 : punctuation.separator.variable | |
7 : entity.name.tag.wildcard.css | |
7 : markup.raw.block.markdown | |
7 : source.ruby.rails.embedded.html | |
7 : entity.name.function.js | |
7 : meta.tag.sgml.html | |
7 : constant.other.placeholder | |
7 : doctype | |
7 : meta.function-call.py | |
7 : declaration.function | |
7 : support.type.property-name | |
7 : meta.tag.sgml.doctype.xml | |
7 : string.other.link.title.markdown | |
7 : meta.brace.curly.js | |
7 : punctuation.definition.string.begin.markdown | |
7 : string.quoted.double | |
7 : variable.language.ruby | |
7 : punctuation.definition.string.end.markdown | |
7 : declaration.doctype.DTD | |
6 : meta.brace.round.coffee | |
6 : meta.array.php | |
6 : entity.name.class.variant | |
6 : punctuation.definition.metadata.markdown | |
6 : entity.name.preprocessor | |
6 : meta.brace.curly.coffee | |
6 : keyword.other.directive | |
6 : keyword.other.new | |
6 : meta.delimiter.method.period.coffee | |
6 : punctuation.separator.key-value.css | |
6 : meta.brace.round | |
6 : source.js.embedded | |
6 : punctuation.definition.tag.end.html | |
6 : meta.property-name | |
6 : sublimelinter.annotations | |
6 : punctuation.definition.list | |
6 : markup.deleted.git_gutter | |
6 : variable.other.php | |
6 : punctuation.definition.tag.begin.html | |
6 : punctuation.definition.string.begin.c | |
6 : keyword.preprocessor | |
6 : keyword.other.directive.line-number | |
6 : keyword.other [std] | |
6 : punctuation.definition.parameters.begin.js | |
6 : source.angular.embedded.html | |
6 : entity.other.attribute-name.id.html | |
6 : punctuation.definition.bold.markdown | |
6 : source.css.embedded | |
6 : string.other.link.title.restructuredtext | |
6 : entity.name.section.markdown | |
6 : punctuation.definition.string.end.c | |
6 : text.xml | |
6 : | | |
6 : punctuation.section.embedded.coffee | |
6 : string.other.math.tex | |
6 : string.regexp.group | |
6 : markup.inserted.git_gutter | |
6 : punctuation.definition.parameters.end.js | |
6 : keyword.unit.css | |
6 : punctuation.definition.italic.markdown | |
6 : meta.brace.square.coffee | |
6 : markup.changed.git_gutter | |
6 : variable.other.readwrite.instance.coffee | |
6 : punctuation.definition | |
6 : meta.tag.other.html | |
6 : constant.numeric.ruby | |
6 : keyword.other.DML.sql | |
6 : entity.other.attribute-name.angular.html | |
6 : meta.separator.markdown | |
5 : variable.other.constant.ruby | |
5 : meta.doctype.DTD | |
5 : meta.link.inline.markdown | |
5 : constant.other.rgb-value.css | |
5 : markup.italic.markdown | |
5 : meta.function-call.object | |
5 : meta.brace.square.js | |
5 : entity.name.tag.doctype.html | |
5 : keyword.control.html.elements | |
5 : keyword.control.import.python | |
5 : meta.tag.any.html | |
5 : punctuation.separator.key-value.html | |
5 : storage.type.user-defined | |
5 : source.php.embedded.line.html | |
5 : markup.untracked.git_gutter | |
5 : invalid.trailing-whitespace | |
5 : source.sass | |
5 : support.constant.color | |
5 : meta.brace | |
5 : meta.property-value.scss | |
5 : brackethighlighter.curly | |
5 : punctuation.section.scope | |
5 : brackethighlighter.tag | |
5 : meta.function-call.python | |
5 : string.other.link.description.markdown | |
5 : meta.tag.inline.any | |
5 : variable.js | |
5 : entity.name.type.class.ruby | |
5 : meta.tag.block.any | |
5 : entity.name.function.decorator | |
5 : keyword.control.import.from.python | |
5 : entity.name.type.module | |
5 : text.html.django | |
5 : markup.ignored.git_gutter | |
5 : support.constant.font-name.css | |
5 : entity.other.attribute-name.pseudo-class | |
5 : entity.name.tag.script | |
5 : punctuation.definition.range.diff | |
5 : storage.modifier.java | |
5 : storage.type.class.python | |
5 : keyword.operator.logical | |
5 : meta.property-list.css | |
5 : other.preprocessor | |
5 : entity.name.tag.block.any.html | |
4 : variable.parameter.misc.css | |
4 : punctuation.definition.string.end.php | |
4 : constant.other.reference.link | |
4 : punctuation.definition.string.begin.ruby | |
4 : storage.type.function.python | |
4 : punctuation.definition.string.begin.php | |
4 : meta.tag.block.any.html | |
4 : meta.group.braces.round | |
4 : entity.name.function.predicate | |
4 : storage.modifier.import.java | |
4 : storage.type.function.php | |
4 : markup.raw.restructuredtext | |
4 : comment.line.number-sign.shell | |
4 : storage.type.function | |
4 : keyword.type.variant | |
4 : meta.group.braces.square | |
4 : string.quoted.single.js | |
4 : text.html.php.source | |
4 : entity.name.structure | |
4 : variable.other.normal.shell | |
4 : brackethighlighter.angle | |
4 : markup.heading.1.markdown | |
4 : constant.other.database-name.sql | |
4 : meta.toc-list.id | |
4 : entity.name.type.class.type | |
4 : variable.other.external-symbol | |
4 : support.function.dom.js | |
4 : block_cursor | |
4 : punctuation.definition.string.end.ruby | |
4 : source.php.embedded.block.html | |
4 : entity.name.tag.style | |
4 : variable.other.global.safer.php | |
4 : punctuation.definition.constant.css | |
4 : other.remove | |
4 : entity.name.function.ruby | |
4 : keyword.operator.symbol.prefix | |
4 : meta.delimiter.object.comma | |
4 : declaration.class | |
4 : punctuation.definition.string.end.shell | |
4 : meta.tag.sgml-declaration.doctype | |
4 : meta.tag.other | |
4 : meta.scope.case-body.shell | |
4 : variable.other.property.php | |
4 : entity.name.function.misc | |
4 : entity.name.module | |
4 : variable.other.loop.shell | |
4 : storage.modifier.global.python | |
4 : punctuation.separator.key-value | |
4 : variable.other.normal | |
4 : support.function.builtin.shell | |
4 : punctuation.definition.logical-expression.shell | |
4 : other.add | |
4 : meta.link.inline.restructuredtext | |
4 : punctuation.definition.raw.restructuredtext | |
4 : brackethighlighter.round | |
4 : keyword.control.def.ruby | |
4 : support.function.activerecord.rails | |
4 : meta.scope.for-in-loop.shell | |
4 : constant.language.boolean | |
4 : keyword.operator.class.php | |
4 : constant.numeric.js | |
4 : meta.scope.case-block.shell | |
4 : entity.name.function.io | |
4 : text.restructuredtext | |
4 : support.class.exception | |
4 : string.quoted.single.php | |
4 : string.quoted.double.block.python | |
4 : keyword.operator.symbol.infix | |
4 : markup.heading.2.markdown | |
4 : string.quoted.double.php | |
4 : brackethighlighter.quote | |
4 : markup.underline.link.markdown | |
4 : meta.class.python | |
4 : string.unquoted.embedded | |
4 : punctuation.separator.continuation | |
4 : markup.bold.markdown | |
4 : support.type.python | |
4 : variable.language.fenced.markdown | |
4 : support.other.module | |
4 : keyword.other.documentation.param.javadoc | |
4 : meta.tag.block.script | |
4 : other.package.exclude | |
4 : brackethighlighter.square | |
4 : string.quoted.double.doctype.identifiers-and-DTDs.html | |
4 : punctuation.definition.string.begin.shell | |
4 : punctuation.definition.heading.markdown | |
4 : meta.function.js | |
4 : string.quoted.double.xml | |
3 : punctuation.definition.string.end.json | |
3 : punctuation.section.function.css | |
3 : constant.character.escape.perl | |
3 : punctuation.definition.array.end | |
3 : meta.documentation.tag.param.javadoc | |
3 : constant.numeric.php | |
3 : punctuation.definition.string.begin.tex | |
3 : punctuation.section.group.tex | |
3 : support.function.any-method.c | |
3 : variable.parameter.definition.label.latex | |
3 : variable.other.readwrite.global.perl | |
3 : entity.name.tag.id.haml | |
3 : meta.function-call.php | |
3 : storage.type.php | |
3 : keyword.other.new.php | |
3 : constant.character.math.tex | |
3 : support.class.prototype.js | |
3 : source.java | |
3 : punctuation.definition.arguments.end.latex | |
3 : entity.other.attribute-name.id.sass | |
3 : entity.name.tag.class.haml | |
3 : entity.name.type.class.php | |
3 : string.quoted.double.js | |
3 : support.other [std] | |
3 : meta.function-call.static.php | |
3 : keyword.control.label.latex | |
3 : storage.modifier.extends.php | |
3 : meta.function.method.with-arguments.ruby | |
3 : meta.array.empty.php | |
3 : support.type.exception.python | |
3 : meta.group.braces.tex | |
3 : keyword.control.import.include.php | |
3 : entity.name.tag.xml | |
3 : keyword.control.import.include.c | |
3 : support.function.event-handler.js | |
3 : keyword.control.class.ruby | |
3 : entity.name.function.preprocessor.c | |
3 : source.clojure | |
3 : meta.preprocessor.macro.c | |
3 : punctuation.definition.constant.math.tex | |
3 : support.function.general.tex | |
3 : support.function.be.latex | |
3 : string.other.link.description.title.markdown | |
3 : constant.language.ruby | |
3 : punctuation.separator | |
3 : storage.type.c | |
3 : entity.name.function.c | |
3 : variable.other.predefined.perl | |
3 : punctuation.definition.string.begin.perl | |
3 : punctuation.terminator.expression.php | |
3 : meta.function-call.arguments.python | |
3 : keyword.operator.index-end.php | |
3 : keyword.operator.index-start.php | |
3 : meta.other.inherited-class.php | |
3 : comment.line.number-sign.perl | |
3 : punctuation.definition.string.end.tex | |
3 : entity.other.attribute-name.class.sass | |
3 : keyword.control.import.define.c | |
3 : constant.other.color.rgb-value.scss | |
3 : punctuation.definition.comment.tex | |
3 : punctuation.definition.string.begin.json | |
3 : storage.type.class.php | |
3 : entity.name.function.php | |
3 : constant.other.math.tex | |
3 : variable.parameter.sass | |
3 : punctuation.definition.array.begin | |
3 : meta.function.section | |
3 : punctuation.definition.link.markdown | |
3 : meta.class.java | |
3 : directive | |
3 : punctuation.definition.variable.ruby | |
3 : object.property.function.prototype.js | |
3 : keyword.control.untitled | |
3 : keyword.operator.comparison | |
3 : keyword.control.ref.latex | |
3 : markup.raw.block | |
3 : keyword.control.at-rule.sass | |
3 : constant.other.php | |
3 : keyword.operator.comparison.perl | |
3 : string.quoted.other.lt-gt.include.c | |
3 : support.class.php | |
3 : meta.class.ruby | |
3 : support.function.section.latex | |
3 : source.yaml-tmlanguage | |
3 : meta.function.python | |
3 : variable.parameter.function.latex | |
3 : constant.other.unit.sass | |
3 : keyword.operator.symbol | |
3 : meta.function-call.arguments | |
3 : support.constant.core | |
3 : constant.numeric.c | |
3 : entity.name.tag.localname.xml | |
3 : comment.line.percentage.tex | |
3 : support.function.perl | |
3 : keyword.other.import.java | |
3 : punctuation.definition.string.end.perl | |
3 : support.function.misc.css | |
3 : punctuation.definition.arguments.latex | |
3 : support.function.C99.c | |
3 : entity.name.tag.doctype | |
3 : punctuation.definition.arguments.begin.latex | |
3 : meta.tag.sgml.doctype.html | |
3 : keyword.other.unit.scss | |
3 : keyword.other.phpdoc.php | |
3 : entity.other.attribute-name.pseudo-element | |
3 : variable.other.readwrite.instance.ruby | |
3 : punctuation.definition.variable.perl | |
3 : support.type.property-name.sass | |
3 : string.unquoted.old-plist | |
3 : punctuation.section.array | |
3 : text.plain | |
3 : keyword.operator.assignment | |
2 : support.function.misc.scss | |
2 : punctuation.definition.entry | |
2 : variable.scss | |
2 : keyword.operator.assignment.python | |
2 : support.function.misc | |
2 : markup.underline.link.image.markdown | |
2 : meta.diff.comment | |
2 : punctuation.definition.tag.end.xml | |
2 : punctuation.definition.arguments | |
2 : punctuation.definition.comment) | |
2 : keyword.other.data-integrity.sql | |
2 : meta.paragraph.list.markdown | |
2 : punctuation.definition.heading.restructuredtext | |
2 : markup.error | |
2 : keyword.doctype.xml | |
2 : meta.tag.entity | |
2 : markup.other.command.restructuredtext | |
2 : meta.tag.xml | |
2 : string.quoted.other.js | |
2 : storage.modifier.implements | |
2 : markup.list.unnumbered.markdown | |
2 : punctuation.definition.constant | |
2 : markup.list.numbered.markdown | |
2 : comment.documentation [std] | |
2 : keyword.other.default.scss | |
2 : support.constant.core.php | |
2 : meta.function-call.static | |
2 : punctuation.definition.intepreted.restructuredtext | |
2 : entity.name.exception | |
2 : keyword.operator.dereference.java | |
2 : source.sql | |
2 : support.constant.font-name | |
2 : support.other.namespace | |
2 : punctuation.separator.key-value.restructuredtext | |
2 : keyword.other.using.source.cs | |
2 : declaration.tag.entity | |
2 : keyword.operator.star | |
2 : string.interpolation | |
2 : meta.property-list | |
2 : meta.other.directive.restructuredtext | |
2 : meta.function-call.pythonsource.python | |
2 : string.quoted.single.xml | |
2 : git.changes.+ | |
2 : punctuation.definition.tag.xml | |
2 : entity.name.type.instance.js | |
2 : entity.name.tag.restructuredtext | |
2 : comment.block.documentation | |
2 : support.constant.js | |
2 : punctuation.definition.constant.end.markdown | |
2 : meta.brace.round.js | |
2 : storage.modifier.sql | |
2 : source.less | |
2 : entity.name.function.frame | |
2 : markup.traceback | |
2 : punctuation.definition.fenced.markdown | |
2 : storage.type.attr | |
2 : markup.raw.block.fenced.markdown | |
2 : punctuation.definition.string.ruby | |
2 : entity.other.attribute-name.attribute.css | |
2 : source.php.embedded | |
2 : (punctuation.definition.string | |
2 : meta.paragraph.markdown | |
2 : entity.tag.tagbraces.django | |
2 : support.constant.std.php | |
2 : markup.underline.link.restructuredtext | |
2 : punctuation.definition.string.restructuredtext | |
2 : constant.other.rgb-value.sass | |
2 : meta.function-name | |
2 : punctuation.definition.arbitrary-repitition | |
2 : keyword.other.create.sql | |
2 : comment.punctuation | |
2 : markup.output | |
2 : constant.numeric.line-number.match.find-in-files | |
2 : punctuation.definition.constant.markdown | |
2 : punctuation.definition.field.restructuredtext | |
2 : punctuation.definition.constant.begin.markdown | |
2 : support.constant.property-value.css.sass | |
2 : sublimelinter.mark.error | |
2 : punctuation.definition.directive.restructuredtext | |
2 : deco.folding | |
2 : sublimelinter.notes | |
2 : keyword.control.twig | |
2 : string.regexp.classic.ruby | |
2 : entity.name.type.class.python | |
2 : brackethighlighter.unmatched | |
2 : git.changes.x | |
2 : entity.name.type.class.java | |
2 : meta.property-list.scss | |
2 : invalid.bad-comma.css | |
2 : meta.tag.sgml | |
2 : entity.name.tag.yaml | |
2 : variable.other.readwrite.instance | |
2 : meta.delimiter | |
2 : punctuation.separator.array | |
2 : sublimelinter.gutter-mark | |
2 : markup.link [std] | |
2 : keyword.other.include.php | |
2 : punctuation.separator.key-value.yaml | |
2 : meta.class.old-style.python | |
2 : constant.other.table-name.sql | |
2 : entity.name.function.decorator.python | |
2 : brackethighlighter.default | |
2 : punctuation.separator.inheritance.php | |
2 : meta.function.decorator.python | |
2 : sublimelinter.mark.warning | |
2 : entity.name.tag.reference.css | |
2 : invalid.violation | |
2 : storage.modifier.js | |
2 : markup.prompt | |
2 : invalid.warning | |
2 : string.quoted.double.include | |
2 : punctuation.definition.location.restructuredtext | |
2 : punctuation.definition.entity.css | |
2 : variable.other.readwrite.global | |
2 : support.constant.property-value.sass | |
2 : meta.link.reference | |
2 : variable.other.global.php | |
2 : string.quoted.other.lt-gt.include | |
2 : meta.link.inline | |
2 : keyword.other.name-of-parameter | |
2 : markup.italic.restructuredtext | |
2 : variable.other.twig | |
2 : punctuation.definition.string.markdown | |
2 : meta.attribute.smarty | |
2 : git.changes.- | |
2 : punctuation.terminator.statement.js | |
2 : support.other.django.module | |
2 : meta.toc-list.comment.diff | |
2 : meta.function.decorator | |
2 : keyword.storage.php | |
2 : comment.block.preprocessor | |
2 : entity.name.type.class-type | |
2 : support.function.name.sass | |
2 : punctuation.definition.tag.begin.xml | |
2 : meta.brace.square | |
2 : storage.type.primitive.array.java | |
2 : storage.modifier.extends | |
2 : constant.js | |
2 : keyword.name.ini | |
2 : punctuation.definition.character-class | |
2 : storage.type.sql | |
2 : meta.link.reference.def.restructuredtext | |
2 : markup.table | |
2 : support.class.builtin | |
2 : punctuation.section | |
2 : keyword.markup.attribute-name | |
2 : punctuation.definition.dictionary | |
2 : source.php | |
2 : punctuation.section.function.ruby | |
2 : markup.bold.restructuredtext | |
1 : sublimelinter.underline | |
1 : property | |
1 : variable.other.jinja | |
1 : highlight_matching_word | |
1 : markup.other [std] | |
1 : storage.type.accessor | |
1 : meta.method-return.actionscript.3 | |
1 : section-name | |
1 : punctuation.definition.array.begin.php | |
1 : declaration.function.operator | |
1 : support.function.filter.twig | |
1 : function-result | |
1 : invalid.illegal.adb | |
1 : meta.use | |
1 : entity.other.attribute-name.placeholder-selector.sass | |
1 : entity.name.namespace.clojure | |
1 : constant.language.html | |
1 : remark.todo | |
1 : entity.name.type.textile | |
1 : storage.type.primitive.java | |
1 : Markdown.inserted | |
1 : extract.custom.title.sql | |
1 : storage.modifier.implements.java | |
1 : constant.other.adb.timestamp | |
1 : string.regexp.double-quoted.php | |
1 : argument-name | |
1 : entity.name.type.namespace | |
1 : meta.tag.no-content | |
1 : punctuation.delimiter.method | |
1 : entity.name.function.non-terminal | |
1 : embedded | |
1 : constant.language.null.js | |
1 : markup.quote.markdown | |
1 : entity.other.attribute-name.universal | |
1 : comment.line.marker.php | |
1 : mcol_ffff00FF | |
1 : entity.name.tag.html | |
1 : string.unquoted.tag-string | |
1 : punctuation.definition.end | |
1 : comment.other.server-side-include.xhtml | |
1 : sublimelinter.warning | |
1 : meta.documentation.tag.see.asdoc | |
1 : string.quoted.other.xml | |
1 : meta.structure.dictionary.key | |
1 : diff.deleted | |
1 : sublimelint.violation | |
1 : keyword.control.html | |
1 : constant.numeric.item-number.todo-list | |
1 : entity.name.function.actionscript | |
1 : storage.type.templatetag | |
1 : hyperlink | |
1 : storage.type.variable | |
1 : punctuation.definition.prolog.haml | |
1 : flow.enclose.round | |
1 : meta.group.regexp | |
1 : keyword.other.match | |
1 : markup.changed.svn | |
1 : support.function.clojure | |
1 : meta.item-access.arguments | |
1 : meta.set.variable | |
1 : Operators | |
1 : punctuation.separator.other | |
1 : markup.bold.textile | |
1 : support.function.magic | |
1 : entity.other.attribute-name.user.ee | |
1 : support.type.dom | |
1 : entity.name.type.module.ruby | |
1 : message.error | |
1 : entity.other.attribute-name.tag.pseudo-class.css | |
1 : override.htmlTagPairOccurrenceIndication | |
1 : console.input | |
1 : remark.done | |
1 : keyword.operator.arithmetic.python | |
1 : override.searchResultIndication | |
1 : meta.environment-variable | |
1 : storage.type.java | |
1 : keyword.other.modifiers | |
1 : punctuation.separator.key-value.scss | |
1 : constant.language.boolean.true.js | |
1 : constant.numeric.twig | |
1 : keyword.other.class | |
1 : markup.todo | |
1 : meta.link.inline.textile | |
1 : sublimelinter.outline | |
1 : keyword.invalid | |
1 : storage.type.regexp.group | |
1 : meta.attribute-with-value.id.html | |
1 : meta.function-call.other.twig | |
1 : support.constant.font-name.scss | |
1 : storage.type.generic.source.cs | |
1 : string.quotedxx | |
1 : support.function.js.jquery | |
1 : entity.name.tag.scss | |
1 : meta.paragraph.text | |
1 : string.docstring | |
1 : support.other.keyword | |
1 : storage.type.import | |
1 : variable.other.block | |
1 : keyword.operator.new.js | |
1 : keyword.other.function | |
1 : meta.function-call.twig | |
1 : keyword.operator.infix.floating-point.ocaml | |
1 : variable.parameter.function.language | |
1 : constant.numeric.line-number.todo-list | |
1 : keyword.other.documentation.custom.javadoc | |
1 : meta.function.parameters.python | |
1 : function-name | |
1 : remark.fixme | |
1 : keyword.operator.assignment.augmented | |
1 : *uri* | |
1 : keyword.other.directive.jsp | |
1 : constant.character.escape.xml | |
1 : punctuation.separator.annotation.result.python | |
1 : python | |
1 : entity.name.tag.structure.any.html | |
1 : punctuation.section.function | |
1 : keyword.other.important.scss | |
1 : storage.type.namespace | |
1 : comment.block.documentation.phpdoc | |
1 : entity.other.attribute-name.localname | |
1 : invisibles | |
1 : entity.name.type.xml | |
1 : string.other.link.title | |
1 : string.other.link.markdown | |
1 : mcol_ffa500FF | |
1 : keyword.markup.element-name | |
1 : constant.other.reference.link.markdown | |
1 : level-1 | |
1 : meta.use.php | |
1 : support.constant.css | |
1 : constant.other.allcaps.python | |
1 : remark.warning | |
1 : ee.tag.html | |
1 : constant.language.js | |
1 : keyword.other.documentation.return.javadoc | |
1 : meta.variable-usage.sass | |
1 : markup.bold.markdownl | |
1 : keyword.operator.logical.php | |
1 : variable.parameter.url | |
1 : meta.property-name.sass | |
1 : meta.attribute-selector | |
1 : keyword.other.decorator | |
1 : keyword.other.default | |
1 : constant.other.directive.attribute.jsp | |
1 : punctuation.section.tag.twig | |
1 : remark.note | |
1 : entity.name.type.object.js.firebug | |
1 : entity.name.function.python | |
1 : support.function.match.clojure | |
1 : link | |
1 : constant.numeric.java | |
1 : meta.array.twig | |
1 : punctuation.definition.parameters-group.end.python | |
1 : keyword.tag | |
1 : comment.other.server-side-include.html | |
1 : remark.wait | |
1 : keyword.js | |
1 : entity.name.tag.xhtml | |
1 : punctuation.whitespace.comment | |
1 : entity.name.type.token | |
1 : *link* | |
1 : keyword.operator.assignment.jsp | |
1 : keyword.operator.comparison.java | |
1 : mcol_00ffffFF | |
1 : support.type.function.global | |
1 : support.constant.dom.js | |
1 : punctuation.definition.tag.begin.ee | |
1 : keyword.operator.dereference | |
1 : keyword.other.important | |
1 : string.quoted.double.block | |
1 : source.*.embedded | |
1 : constant.language.null | |
1 : markup.list.numbered.textile | |
1 : class | |
1 : entity.other.attribute-name.php | |
1 : support.function.activesupport.rails | |
1 : keyword.main | |
1 : variable.other.jinja.filter | |
1 : entity.other.attribute-name.xml | |
1 : keyword.other.documentation.version.javadoc | |
1 : support.function.properties | |
1 : pyflakeswarning | |
1 : meta.property-value.constant.numeric.css | |
1 : meta.method.return-type.source.cs | |
1 : support.variable.magic.python | |
1 : storage.type.source.cs | |
1 : variable.documentroot.xml | |
1 : level10 | |
1 : punctuation.definition.tag.end.ee | |
1 : entity.name.function.abp | |
1 : keyword.command | |
1 : constant.language.twig | |
1 : wordhighlight | |
1 : storage.clojure | |
1 : variable.language.java | |
1 : meta.method.identifier | |
1 : entity.name.type.html | |
1 : meta.hash.twig | |
1 : meta.tag.haml | |
1 : comment.line.todo.php | |
1 : entity.name.filename | |
1 : punctuation.separator.inheritance | |
1 : punctuation.definition.string.html | |
1 : storage.type.variant.polymorphic | |
1 : constant.other.name.xml | |
1 : meta.function | |
1 : support.function.twig | |
1 : entity.name.function.scss | |
1 : variable.documentroot | |
1 : string.quoted.double.shell | |
1 : constant.language.java | |
1 : punctuation.definition.inheritance.begin.python | |
1 : string.quoted.single.css | |
1 : markup.underline.link.text | |
1 : keyword.control.flow.python | |
1 : sublimeline.illegal | |
1 : storage.type.object.array.java | |
1 : support.function.name | |
1 : meta.embedded.block | |
1 : entity.other.jinja.delimiter | |
1 : constant.numeric.key | |
1 : custom.title.sql | |
1 : keyword.other.name | |
1 : variable.language.namespace.php | |
1 : meta.tag.inline.any.twig | |
1 : meta.item-access | |
1 : support.constant.property-value.scss | |
1 : entity.name.tag.inline.any.html | |
1 : source.adb | |
1 : string.quoted.double.doctype | |
1 : source.camlp4.embedded | |
1 : entity.name.function.non-terminal.reference | |
1 : keyword.control.source.cs | |
1 : entity.other.control | |
1 : punctuation.definition.string.end.xml | |
1 : constant.string.symbole.clojure | |
1 : entity.name.function.java | |
1 : meta.tag.template.value.twig | |
1 : support.class.dom | |
1 : string.interpolated.backtick.shell | |
1 : punctuation.section.property-list.end.scss | |
1 : support.property | |
1 : keyword.other.js | |
1 : meta.class.identifier.source.cs | |
1 : meta.attribute-with-value | |
1 : support.function.builtin_functions | |
1 : keyword.adb | |
1 : string.regexp.single-quoted.php | |
1 : support.constant.name.tm-language-def | |
1 : keyword.other.documentation.throws.javadoc | |
1 : entity.name.type.module-type.ocaml | |
1 : keyword.operator.assignment.java | |
1 : meta.property-value.constant.named-color.css.keyword.other.unit.css | |
1 : constant.language.python | |
1 : support.constant.dom | |
1 : remark.error | |
1 : keyword.irreversible | |
1 : support.class.implements | |
1 : keyword.reserved.js | |
1 : entity.parameter.attribute | |
1 : keyword.operator.string.php | |
1 : keyword.operator.logical.java | |
1 : meta.delimiter.object.comma.js | |
1 : keyword.reporting | |
1 : meta.hash | |
1 : keyword.other.namespace | |
1 : support.keyword.node | |
1 : keyword.other.documentation.since.javadoc | |
1 : keyword.other.mark | |
1 : keyword.control.ee | |
1 : markup.deleted.svn | |
1 : variable.other.property.twig | |
1 : support.function.addon.ee | |
1 : constant.other.placeholder.py | |
1 : sublimelinter.violation | |
1 : keyword.other.function.use | |
1 : console.prompt | |
1 : meta.method-call | |
1 : comment.punctuation.semicolon.sass | |
1 : keyword.math | |
1 : variable.other.class | |
1 : meta.constructor.argument | |
1 : meta.namespace | |
1 : punctuation.definition.list_item | |
1 : variable.other.object | |
1 : constant.language.boolean.false.js | |
1 : class-inheritance | |
1 : string.unquoted.cdata.xml | |
1 : support.constant.tm-language-def | |
1 : entity.name.type.variant.polymorphic | |
1 : string.regexp.arbitrary-repitition.php | |
1 : function-arg-type | |
1 : flow.pipe | |
1 : punctuation.section.function.scss | |
1 : flow.enclose.parameter | |
1 : keyword.css | |
1 : entity.name.tag.other.html | |
1 : markup.list.unnumbered.textile | |
1 : constant.language.null.actionscript | |
1 : storage.type.class | |
1 : punctuation.terminator.rule.scss | |
1 : meta.class.identifier | |
1 : *url* | |
1 : keyword.control.php | |
1 : keyword.operator.arithmetic.java | |
1 : string.quoted.double.twig | |
1 : function | |
1 : punctuation.scss | |
1 : string.quoted.single.block | |
1 : keyword.other.namespace.source.cs | |
1 : constant.numeric.scss | |
1 : flow.enclose.square | |
1 : meta.brace.curly | |
1 : keyword.control.at-rule.mixin.scss | |
1 : constant.numeric.integer.int64 | |
1 : entity.function.addon.ee | |
1 : support.other.namespace.use-as.php | |
1 : support.function.hash_md.php | |
1 : level9 | |
1 : level8 | |
1 : level7 | |
1 : level6 | |
1 : level5 | |
1 : level4 | |
1 : level3 | |
1 : level2 | |
1 : level1 | |
1 : level0 | |
1 : punctuation.definition.vector | |
1 : variable.parameter.function.python | |
1 : mcol_ff0000FF | |
1 : meta.selector.jquery | |
1 : meta.toc-list.line-number.diff | |
1 : Markdown.heading | |
1 : variable.other.django.settings | |
1 : markup.inserted.svn | |
1 : variable.parameter.php | |
1 : entity.name.tag.sass | |
1 : string.quoted.double.css | |
1 : storage.modifier.extends.java | |
1 : entity.name.type.variant | |
1 : entity.tag.tagbraces | |
1 : keyword.conditional.java | |
1 : constant.other.adb | |
1 : sublimelint.notes | |
1 : keyword.other.documentation.serial.javadoc | |
1 : support.function.less | |
1 : constant.numeric.floating-point.ocaml | |
1 : meta.function.arguments.twig | |
1 : meta.scope.changed-files.svn | |
1 : punctuation.definition.string.php | |
1 : keyword.operator.comparison.php | |
1 : keyword.control.tag-name | |
1 : constant.character.escape.html | |
1 : variable.parameter.ee | |
1 : keyword.operator.prefix.floating-point.ocaml | |
1 : punctuation.definition.set | |
1 : keyword.operator.symbolic | |
1 : override.rubyBlockPairOccurrenceIndication | |
1 : support.variable.language.ee | |
1 : punctuation.definition.array.end.php | |
1 : flow.enclose.singlequote | |
1 : active_guide | |
1 : keyword.other.documentation.serialData.javadoc | |
1 : meta.delimiter.method.period.js | |
1 : entity.name.type.token.reference | |
1 : meta.tag.template.block.twig | |
1 : entity.name.filename.adb | |
1 : entity.name.method | |
1 : override.xmlTagPairOccurrenceIndication | |
1 : meta.variable-declaration.sass | |
1 : meta.property-name.scss | |
1 : support.operator.quantifier | |
1 : keyword.operator.logical.ee | |
1 : string.quoted.single.block.python | |
1 : keyword.other.documentation.author.javadoc | |
1 : support.type.class.python | |
1 : support.constant.color.w3c-standard-color-name.css | |
1 : keyword.exception | |
1 : storage.type.annotation.java | |
1 : support.function.builtin | |
1 : Markdown.changed | |
1 : keyword.other.DML | |
1 : support.function.any-method.builtin.css | |
1 : punctuation.separator.annotation.python | |
1 : constant.numeric.integer.int32 | |
1 : keyword.other.python | |
1 : keyword.other.name.sublime-settings | |
1 : meta.scope.heredoc | |
1 : support.orther.namespace.use.php | |
1 : keyword.other.regex.sass | |
1 : entity.other.argument.twig | |
1 : entity.other.attribute-name.js | |
1 : flow.enclose.macro | |
1 : punctuation.definition.string.begin.xml | |
1 : console.error | |
1 : puctuation | |
1 : comment.line.note.python | |
1 : constant.other.symbol.ruby.19syntax | |
1 : string.js | |
1 : keyword.operator.new | |
1 : support.class.js.jquery | |
1 : remark.exception | |
1 : sublimelinter.illegal | |
1 : remark.info | |
1 : mcol_0000ffFF | |
1 : comment.punctuation.comma.sass | |
1 : constant.numeric.integer.nativeint | |
1 : variable.other.ee | |
1 : sublimelint.illegal | |
1 : class-name | |
1 : support.function.filter.variable.twig | |
1 : comment.block.sass | |
1 : storage.modifier.source.cs | |
1 : source.console | |
1 : override.pydevOccurrenceIndication | |
1 : punctuation.definition.parameters-group.begin.python | |
1 : keyword.other.documentation.serialField.javadoc | |
1 : console.warning | |
1 : diff.inserted | |
1 : meta.function.argument.typehinted | |
1 : storage.type.templatetag.django | |
1 : storage.modifier.global | |
1 : entity.name.tag.haml | |
1 : keyword.operator.logical.python | |
1 : entity.name.function.twig | |
1 : punctuation.whitespace.embedded | |
1 : keyword.control.filter.django | |
1 : support.function.tester | |
1 : Markdown.deleted | |
1 : sublimelint.warning | |
1 : entity.name.tag.wildcard | |
1 : mcol_008000FF | |
1 : string.quoted.double.ruby | |
1 : keyword.other.documentation.exception.javadoc | |
1 : keyword.operator.increment-decrement.java | |
1 : function-argument | |
1 : punctuation.definition.map | |
1 : punctuation.definition.group | |
1 : entity.other.attribute-name.predefined.ee | |
1 : string.regexp.character-class.php | |
1 : storage.type.module | |
1 : support.other.namespace.php | |
1 : punctuation.section.embedded.begin.asp | |
1 : string.quoted.single.twig | |
1 : keyword.operator.setter | |
1 : string.quoted.single.sql | |
1 : keyword.other.documentation.see.javadoc | |
1 : support.type.proerty | |
1 : meta.embedded.line | |
1 : meta.xml-processing.html | |
1 : keyword.other.use | |
1 : support.constant.ee | |
1 : meta.block-level.markdown | |
1 : keyword.control.at-rule.import.scss | |
1 : support.constant.actionscript.2 | |
1 : keyword.control.at-rule.include.scss | |
1 : meta.include.php | |
1 : meta.other.inherited-class | |
1 : comment.line.fixme.php | |
1 : keyword.doctype | |
1 : keyword.control.tag-name.django | |
1 : meta.method.declaration | |
1 : source.r.embedded | |
1 : punctuation.definition.decorator | |
1 : support.function.magic.python | |
1 : markdown.heading | |
1 : punctuation.definition.inheritance.end.python | |
1 : comment.line.note.notation.python | |
1 : source.camlp4.embedded.parser.ocaml | |
1 : support.type.django.model | |
1 : meta.documentation.tag.param.asdoc | |
1 : constant.other.object.key | |
1 : support.ipython.in | |
1 : keyword.time | |
1 : support.ipython.out | |
1 : keyword.other.documentation.deprecated.javadoc | |
1 : entity.other.tagbraces.twig | |
1 : entity.name.filename.todo-list | |
1 : punctuation.definition.tag.*.* | |
1 : punctuation.definition.string.xml | |
1 : comment.line.region | |
1 : punctuation.section.embedded.end.asp | |
1 : punctuation.section.property-list.begin.scss | |
1 : comment.line [std] | |
1 : punctuation.separator.object.twig | |
1 : meta.section.attributes.haml | |
1 : entity.other.attribute-selector.sass | |
1 : flow.enclose.doublequote | |
Out of 14657 total scope occurences, 5046 are from standard scopes and fall onto 68 scope names |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Analyzed 229 color schemes and found 1213 different atomic scopes | |
(punctuation.definition.string : 2 | |
(source : 8 | |
*link* : 1 | |
*uri* : 1 | |
*url* : 1 | |
Markdown.changed : 1 | |
Markdown.deleted : 1 | |
Markdown.heading : 1 | |
Markdown.inserted : 1 | |
Operators : 1 | |
active_guide : 1 | |
argument-name : 1 | |
block_cursor : 4 | |
brackethighlighter.angle : 4 | |
brackethighlighter.curly : 5 | |
brackethighlighter.default : 2 | |
brackethighlighter.quote : 4 | |
brackethighlighter.round : 4 | |
brackethighlighter.square : 4 | |
brackethighlighter.tag : 5 | |
brackethighlighter.unmatched : 2 | |
class : 1 | |
class-inheritance : 1 | |
class-name : 1 | |
[std] comment : 242 | |
[std] comment.block : 23 | |
comment.block.documentation : 2 | |
comment.block.documentation.phpdoc : 1 | |
comment.block.html : 8 | |
comment.block.preprocessor : 2 | |
comment.block.sass : 1 | |
[std] comment.documentation : 2 | |
[std] comment.line : 1 | |
comment.line.fixme.php : 1 | |
comment.line.marker.php : 1 | |
comment.line.note.notation.python : 1 | |
comment.line.note.python : 1 | |
comment.line.number-sign.perl : 3 | |
comment.line.number-sign.shell : 4 | |
comment.line.percentage.tex : 3 | |
comment.line.region : 1 | |
comment.line.todo.php : 1 | |
comment.other.server-side-include.html : 1 | |
comment.other.server-side-include.xhtml : 1 | |
comment.punctuation : 2 | |
comment.punctuation.comma.sass : 1 | |
comment.punctuation.semicolon.sass : 1 | |
console.error : 1 | |
console.input : 1 | |
console.prompt : 1 | |
console.warning : 1 | |
[std] constant : 229 | |
[std] constant.character : 93 | |
constant.character.entity : 12 | |
constant.character.entity.html : 8 | |
constant.character.escape : 104 | |
constant.character.escape.html : 1 | |
constant.character.escape.perl : 3 | |
constant.character.escape.xml : 1 | |
constant.character.escaped : 17 | |
constant.character.math.tex : 3 | |
constant.js : 2 | |
[std] constant.language : 134 | |
constant.language.boolean : 4 | |
constant.language.boolean.false.js : 1 | |
constant.language.boolean.true.js : 1 | |
constant.language.html : 1 | |
constant.language.java : 1 | |
constant.language.js : 1 | |
constant.language.null : 1 | |
constant.language.null.actionscript : 1 | |
constant.language.null.js : 1 | |
constant.language.python : 1 | |
constant.language.ruby : 3 | |
constant.language.twig : 1 | |
[std] constant.numeric : 181 | |
constant.numeric.c : 3 | |
constant.numeric.css : 14 | |
constant.numeric.floating-point : 7 | |
constant.numeric.floating-point.ocaml : 1 | |
constant.numeric.integer.int32 : 1 | |
constant.numeric.integer.int64 : 1 | |
constant.numeric.integer.nativeint : 1 | |
constant.numeric.item-number.todo-list : 1 | |
constant.numeric.java : 1 | |
constant.numeric.js : 4 | |
constant.numeric.key : 1 | |
constant.numeric.line-number.find-in-files : 18 | |
constant.numeric.line-number.match.find-in-files : 2 | |
constant.numeric.line-number.todo-list : 1 | |
constant.numeric.php : 3 | |
constant.numeric.ruby : 6 | |
constant.numeric.scss : 1 | |
constant.numeric.twig : 1 | |
[std] constant.other : 92 | |
constant.other.adb : 1 | |
constant.other.adb.timestamp : 1 | |
constant.other.allcaps.python : 1 | |
constant.other.color : 48 | |
constant.other.color.rgb-value.css : 19 | |
constant.other.color.rgb-value.scss : 3 | |
constant.other.database-name.sql : 4 | |
constant.other.directive.attribute.jsp : 1 | |
constant.other.general.math.tex : 9 | |
constant.other.math.tex : 3 | |
constant.other.name.xml : 1 | |
constant.other.object.key : 1 | |
constant.other.php : 3 | |
constant.other.placeholder : 7 | |
constant.other.placeholder.py : 1 | |
constant.other.reference.link : 4 | |
constant.other.reference.link.markdown : 1 | |
constant.other.rgb-value.css : 5 | |
constant.other.rgb-value.sass : 2 | |
constant.other.symbol : 50 | |
constant.other.symbol.ruby : 7 | |
constant.other.symbol.ruby.19syntax : 1 | |
constant.other.table-name.sql : 2 | |
constant.other.unit.sass : 3 | |
constant.string.symbole.clojure : 1 | |
custom.title.sql : 1 | |
declaration.class : 4 | |
declaration.doctype : 43 | |
declaration.doctype.DTD : 7 | |
declaration.function : 7 | |
declaration.function.operator : 1 | |
declaration.section : 19 | |
declaration.sgml.html : 36 | |
declaration.tag : 91 | |
declaration.tag.entity : 2 | |
declaration.tag.inline : 16 | |
declaration.xml-processing : 43 | |
deco.folding : 2 | |
diff.deleted : 1 | |
diff.inserted : 1 | |
directive : 3 | |
doctype : 7 | |
ee.tag.html : 1 | |
embedded : 1 | |
[std] entity : 278 | |
entity.function.addon.ee : 1 | |
[std] entity.name : 26 | |
entity.name.class : 128 | |
entity.name.class.variant : 6 | |
entity.name.exception : 2 | |
entity.name.filename : 1 | |
entity.name.filename.adb : 1 | |
entity.name.filename.find-in-files : 19 | |
entity.name.filename.todo-list : 1 | |
entity.name.function : 172 | |
entity.name.function.abp : 1 | |
entity.name.function.actionscript : 1 | |
entity.name.function.c : 3 | |
entity.name.function.decorator : 5 | |
entity.name.function.decorator.python : 2 | |
entity.name.function.frame : 2 | |
entity.name.function.io : 4 | |
entity.name.function.java : 1 | |
entity.name.function.js : 7 | |
entity.name.function.misc : 4 | |
entity.name.function.non-terminal : 1 | |
entity.name.function.non-terminal.reference : 1 | |
entity.name.function.php : 3 | |
entity.name.function.predicate : 4 | |
entity.name.function.preprocessor.c : 3 | |
entity.name.function.python : 1 | |
entity.name.function.ruby : 4 | |
entity.name.function.scss : 1 | |
entity.name.function.twig : 1 | |
entity.name.method : 1 | |
entity.name.module : 4 | |
entity.name.namespace.clojure : 1 | |
entity.name.preprocessor : 6 | |
entity.name.section : 79 | |
entity.name.section.markdown : 6 | |
entity.name.structure : 4 | |
entity.name.tag : 236 | |
entity.name.tag.block.any.html : 5 | |
entity.name.tag.class.haml : 3 | |
entity.name.tag.css : 35 | |
entity.name.tag.doctype : 3 | |
entity.name.tag.doctype.html : 5 | |
entity.name.tag.haml : 1 | |
entity.name.tag.html : 1 | |
entity.name.tag.id.haml : 3 | |
entity.name.tag.inline.any.html : 1 | |
entity.name.tag.localname.xml : 3 | |
entity.name.tag.namespace : 13 | |
entity.name.tag.other.html : 1 | |
entity.name.tag.reference.css : 2 | |
entity.name.tag.restructuredtext : 2 | |
entity.name.tag.sass : 1 | |
entity.name.tag.script : 5 | |
entity.name.tag.script.html : 7 | |
entity.name.tag.scss : 1 | |
entity.name.tag.structure.any.html : 1 | |
entity.name.tag.style : 4 | |
entity.name.tag.style.html : 10 | |
entity.name.tag.wildcard : 1 | |
entity.name.tag.wildcard.css : 7 | |
entity.name.tag.xhtml : 1 | |
entity.name.tag.xml : 3 | |
entity.name.tag.yaml : 2 | |
entity.name.type : 49 | |
entity.name.type.class : 63 | |
entity.name.type.class-type : 2 | |
entity.name.type.class.java : 2 | |
entity.name.type.class.php : 3 | |
entity.name.type.class.python : 2 | |
entity.name.type.class.ruby : 5 | |
entity.name.type.class.type : 4 | |
entity.name.type.html : 1 | |
entity.name.type.instance.js : 2 | |
entity.name.type.module : 5 | |
entity.name.type.module-type.ocaml : 1 | |
entity.name.type.module.ruby : 1 | |
entity.name.type.namespace : 1 | |
entity.name.type.object.js.firebug : 1 | |
entity.name.type.textile : 1 | |
entity.name.type.token : 1 | |
entity.name.type.token.reference : 1 | |
entity.name.type.variant : 1 | |
entity.name.type.variant.polymorphic : 1 | |
entity.name.type.xml : 1 | |
[std] entity.other : 8 | |
entity.other.argument.twig : 1 | |
entity.other.attribute-name : 209 | |
entity.other.attribute-name.angular.html : 6 | |
entity.other.attribute-name.attribute.css : 2 | |
entity.other.attribute-name.class : 48 | |
entity.other.attribute-name.class.css : 30 | |
entity.other.attribute-name.class.sass : 3 | |
entity.other.attribute-name.html : 16 | |
entity.other.attribute-name.id : 85 | |
entity.other.attribute-name.id.css : 27 | |
entity.other.attribute-name.id.html : 6 | |
entity.other.attribute-name.id.sass : 3 | |
entity.other.attribute-name.js : 1 | |
entity.other.attribute-name.localname : 1 | |
entity.other.attribute-name.namespace : 13 | |
entity.other.attribute-name.php : 1 | |
entity.other.attribute-name.placeholder-selector.sass : 1 | |
entity.other.attribute-name.predefined.ee : 1 | |
entity.other.attribute-name.pseudo-class : 5 | |
entity.other.attribute-name.pseudo-class.css : 23 | |
entity.other.attribute-name.pseudo-element : 3 | |
entity.other.attribute-name.pseudo-element.css : 10 | |
entity.other.attribute-name.tag.pseudo-class : 24 | |
entity.other.attribute-name.tag.pseudo-class.css : 1 | |
entity.other.attribute-name.universal : 1 | |
entity.other.attribute-name.user.ee : 1 | |
entity.other.attribute-name.xml : 1 | |
entity.other.attribute-selector.sass : 1 | |
entity.other.control : 1 | |
entity.other.inherited-class : 199 | |
entity.other.jinja.delimiter : 1 | |
entity.other.less.mixin : 11 | |
entity.other.tagbraces.twig : 1 | |
entity.parameter.attribute : 1 | |
entity.tag.tagbraces : 1 | |
entity.tag.tagbraces.django : 2 | |
extract.custom.title.sql : 1 | |
flow.enclose.doublequote : 1 | |
flow.enclose.macro : 1 | |
flow.enclose.parameter : 1 | |
flow.enclose.round : 1 | |
flow.enclose.singlequote : 1 | |
flow.enclose.square : 1 | |
flow.pipe : 1 | |
function : 1 | |
function-arg-type : 1 | |
function-argument : 1 | |
function-name : 1 | |
function-result : 1 | |
git.changes.+ : 2 | |
git.changes.- : 2 | |
git.changes.x : 2 | |
highlight_matching_word : 1 | |
hyperlink : 1 | |
[std] invalid : 141 | |
invalid.bad-comma.css : 2 | |
[std] invalid.deprecated : 82 | |
invalid.deprecated.trailing-whitespace : 20 | |
[std] invalid.illegal : 72 | |
invalid.illegal.adb : 1 | |
invalid.trailing-whitespace : 5 | |
invalid.violation : 2 | |
invalid.warning : 2 | |
invisibles : 1 | |
[std] keyword : 253 | |
keyword.adb : 1 | |
keyword.command : 1 | |
keyword.conditional.java : 1 | |
[std] keyword.control : 35 | |
keyword.control.at-rule : 43 | |
keyword.control.at-rule.import.css : 8 | |
keyword.control.at-rule.import.scss : 1 | |
keyword.control.at-rule.include.scss : 1 | |
keyword.control.at-rule.mixin.scss : 1 | |
keyword.control.at-rule.sass : 3 | |
keyword.control.class.ruby : 3 | |
keyword.control.def.ruby : 4 | |
keyword.control.ee : 1 | |
keyword.control.filter.django : 1 | |
keyword.control.flow.python : 1 | |
keyword.control.html : 1 | |
keyword.control.html.elements : 5 | |
keyword.control.import : 21 | |
keyword.control.import.define.c : 3 | |
keyword.control.import.from.python : 5 | |
keyword.control.import.include.c : 3 | |
keyword.control.import.include.php : 3 | |
keyword.control.import.python : 5 | |
keyword.control.js : 7 | |
keyword.control.label.latex : 3 | |
keyword.control.php : 1 | |
keyword.control.ref.latex : 3 | |
keyword.control.ruby : 7 | |
keyword.control.source.cs : 1 | |
keyword.control.tag-name : 1 | |
keyword.control.tag-name.django : 1 | |
keyword.control.twig : 2 | |
keyword.control.untitled : 3 | |
keyword.css : 1 | |
keyword.doctype : 1 | |
keyword.doctype.xml : 2 | |
keyword.exception : 1 | |
keyword.invalid : 1 | |
keyword.irreversible : 1 | |
keyword.js : 1 | |
keyword.main : 1 | |
keyword.markup.attribute-name : 2 | |
keyword.markup.element-name : 1 | |
keyword.math : 1 | |
keyword.name.ini : 2 | |
[std] keyword.operator : 96 | |
keyword.operator.arithmetic.java : 1 | |
keyword.operator.arithmetic.python : 1 | |
keyword.operator.assignment : 3 | |
keyword.operator.assignment.augmented : 1 | |
keyword.operator.assignment.java : 1 | |
keyword.operator.assignment.jsp : 1 | |
keyword.operator.assignment.python : 2 | |
keyword.operator.class : 16 | |
keyword.operator.class.php : 4 | |
keyword.operator.comparison : 3 | |
keyword.operator.comparison.java : 1 | |
keyword.operator.comparison.perl : 3 | |
keyword.operator.comparison.php : 1 | |
keyword.operator.dereference : 1 | |
keyword.operator.dereference.java : 2 | |
keyword.operator.increment-decrement.java : 1 | |
keyword.operator.index-end.php : 3 | |
keyword.operator.index-start.php : 3 | |
keyword.operator.infix.floating-point.ocaml : 1 | |
keyword.operator.js : 25 | |
keyword.operator.logical : 5 | |
keyword.operator.logical.ee : 1 | |
keyword.operator.logical.java : 1 | |
keyword.operator.logical.php : 1 | |
keyword.operator.logical.python : 1 | |
keyword.operator.new : 1 | |
keyword.operator.new.js : 1 | |
keyword.operator.prefix.floating-point.ocaml : 1 | |
keyword.operator.setter : 1 | |
keyword.operator.star : 2 | |
keyword.operator.string.php : 1 | |
keyword.operator.symbol : 3 | |
keyword.operator.symbol.infix : 4 | |
keyword.operator.symbol.infix.floating-point : 8 | |
keyword.operator.symbol.prefix : 4 | |
keyword.operator.symbol.prefix.floating-point : 8 | |
keyword.operator.symbolic : 1 | |
[std] keyword.other : 6 | |
keyword.other.DML : 1 | |
keyword.other.DML.sql : 6 | |
keyword.other.class : 1 | |
keyword.other.create.sql : 2 | |
keyword.other.data-integrity.sql : 2 | |
keyword.other.decorator : 1 | |
keyword.other.default : 1 | |
keyword.other.default.scss : 2 | |
keyword.other.directive : 6 | |
keyword.other.directive.jsp : 1 | |
keyword.other.directive.line-number : 6 | |
keyword.other.documentation.author.javadoc : 1 | |
keyword.other.documentation.custom.javadoc : 1 | |
keyword.other.documentation.deprecated.javadoc : 1 | |
keyword.other.documentation.exception.javadoc : 1 | |
keyword.other.documentation.param.javadoc : 4 | |
keyword.other.documentation.return.javadoc : 1 | |
keyword.other.documentation.see.javadoc : 1 | |
keyword.other.documentation.serial.javadoc : 1 | |
keyword.other.documentation.serialData.javadoc : 1 | |
keyword.other.documentation.serialField.javadoc : 1 | |
keyword.other.documentation.since.javadoc : 1 | |
keyword.other.documentation.throws.javadoc : 1 | |
keyword.other.documentation.version.javadoc : 1 | |
keyword.other.function : 1 | |
keyword.other.function.use : 1 | |
keyword.other.import.java : 3 | |
keyword.other.important : 1 | |
keyword.other.important.css : 8 | |
keyword.other.important.scss : 1 | |
keyword.other.include.php : 2 | |
keyword.other.js : 1 | |
keyword.other.mark : 1 | |
keyword.other.match : 1 | |
keyword.other.modifiers : 1 | |
keyword.other.name : 1 | |
keyword.other.name-of-parameter : 2 | |
keyword.other.name-of-parameter.objc : 17 | |
keyword.other.name.sublime-settings : 1 | |
keyword.other.namespace : 1 | |
keyword.other.namespace.source.cs : 1 | |
keyword.other.new : 6 | |
keyword.other.new.php : 3 | |
keyword.other.phpdoc : 7 | |
keyword.other.phpdoc.php : 3 | |
keyword.other.python : 1 | |
keyword.other.regex.sass : 1 | |
keyword.other.special-method : 51 | |
keyword.other.special-method.ruby : 13 | |
keyword.other.unit : 51 | |
keyword.other.unit.css : 18 | |
keyword.other.unit.scss : 3 | |
keyword.other.use : 1 | |
keyword.other.using.source.cs : 2 | |
keyword.preprocessor : 6 | |
keyword.reporting : 1 | |
keyword.reserved.js : 1 | |
keyword.storage.php : 2 | |
keyword.tag : 1 | |
keyword.time : 1 | |
keyword.type.variant : 4 | |
keyword.unit.css : 6 | |
level-1 : 1 | |
level0 : 1 | |
level1 : 1 | |
level10 : 1 | |
level2 : 1 | |
level3 : 1 | |
level4 : 1 | |
level5 : 1 | |
level6 : 1 | |
level7 : 1 | |
level8 : 1 | |
level9 : 1 | |
link : 1 | |
markdown.heading : 1 | |
[std] markup : 15 | |
[std] markup.bold : 69 | |
markup.bold.markdown : 4 | |
markup.bold.markdownl : 1 | |
markup.bold.restructuredtext : 2 | |
markup.bold.textile : 1 | |
markup.changed : 121 | |
markup.changed.diff : 9 | |
markup.changed.git_gutter : 6 | |
markup.changed.svn : 1 | |
markup.deleted : 138 | |
markup.deleted.diff : 22 | |
markup.deleted.git_gutter : 6 | |
markup.deleted.svn : 1 | |
markup.error : 2 | |
[std] markup.heading : 130 | |
markup.heading.1.markdown : 4 | |
markup.heading.2.markdown : 4 | |
markup.heading.markdown : 11 | |
markup.ignored.git_gutter : 5 | |
markup.inserted : 136 | |
markup.inserted.diff : 22 | |
markup.inserted.git_gutter : 6 | |
markup.inserted.svn : 1 | |
[std] markup.italic : 69 | |
markup.italic.markdown : 5 | |
markup.italic.restructuredtext : 2 | |
[std] markup.link : 2 | |
[std] markup.list : 83 | |
markup.list.numbered.markdown : 2 | |
markup.list.numbered.textile : 1 | |
markup.list.unnumbered.markdown : 2 | |
markup.list.unnumbered.textile : 1 | |
[std] markup.other : 1 | |
markup.other.command.restructuredtext : 2 | |
markup.output : 2 | |
markup.prompt : 2 | |
[std] markup.quote : 80 | |
markup.quote.markdown : 1 | |
[std] markup.raw : 36 | |
markup.raw.block : 3 | |
markup.raw.block.fenced.markdown : 2 | |
markup.raw.block.markdown : 7 | |
markup.raw.inline : 48 | |
markup.raw.inline.markdown : 9 | |
markup.raw.restructuredtext : 4 | |
markup.table : 2 | |
markup.todo : 1 | |
markup.traceback : 2 | |
[std] markup.underline : 31 | |
markup.underline.link : 8 | |
markup.underline.link.image.markdown : 2 | |
markup.underline.link.markdown : 4 | |
markup.underline.link.restructuredtext : 2 | |
markup.underline.link.text : 1 | |
markup.untracked.git_gutter : 5 | |
match : 17 | |
mcol_0000ffFF : 1 | |
mcol_008000FF : 1 | |
mcol_00ffffFF : 1 | |
mcol_ff0000FF : 1 | |
mcol_ffa500FF : 1 | |
mcol_ffff00FF : 1 | |
message.error : 1 | |
[std] meta : 192 | |
meta.array.empty.php : 3 | |
meta.array.php : 6 | |
meta.array.twig : 1 | |
meta.attribute-selector : 1 | |
meta.attribute-selector.css : 7 | |
meta.attribute-with-value : 1 | |
meta.attribute-with-value.id.html : 1 | |
meta.attribute.smarty : 2 | |
meta.block-level : 12 | |
meta.block-level.markdown : 1 | |
meta.brace : 5 | |
meta.brace.curly : 1 | |
meta.brace.curly.coffee : 6 | |
meta.brace.curly.js : 7 | |
meta.brace.erb.html : 10 | |
meta.brace.round : 6 | |
meta.brace.round.coffee : 6 | |
meta.brace.round.js : 2 | |
meta.brace.square : 2 | |
meta.brace.square.coffee : 6 | |
meta.brace.square.js : 5 | |
meta.cast : 12 | |
meta.class : 33 | |
meta.class.identifier : 1 | |
meta.class.identifier.source.cs : 1 | |
meta.class.java : 3 | |
meta.class.old-style.python : 2 | |
meta.class.python : 4 | |
meta.class.ruby : 3 | |
meta.constructor.argument : 1 | |
meta.constructor.argument.css : 37 | |
meta.delimiter : 2 | |
meta.delimiter.method.period.coffee : 6 | |
meta.delimiter.method.period.js : 1 | |
meta.delimiter.object.comma : 4 | |
meta.delimiter.object.comma.js : 1 | |
meta.diff : 79 | |
meta.diff.comment : 2 | |
meta.diff.header : 95 | |
meta.diff.header.from-file : 16 | |
meta.diff.header.to-file : 16 | |
meta.diff.index : 13 | |
meta.diff.range : 19 | |
meta.diff.range.unified : 10 | |
meta.doctype : 58 | |
meta.doctype.DTD : 5 | |
meta.documentation.tag.param.asdoc : 1 | |
meta.documentation.tag.param.javadoc : 3 | |
meta.documentation.tag.see.asdoc : 1 | |
meta.dummy.line-break : 9 | |
meta.embedded : 11 | |
meta.embedded.block : 1 | |
meta.embedded.line : 1 | |
meta.environment-variable : 1 | |
meta.function : 1 | |
meta.function-call : 32 | |
meta.function-call.arguments : 3 | |
meta.function-call.arguments.python : 3 | |
meta.function-call.object : 5 | |
meta.function-call.object.php : 7 | |
meta.function-call.other.twig : 1 | |
meta.function-call.php : 3 | |
meta.function-call.py : 7 | |
meta.function-call.python : 5 | |
meta.function-call.pythonsource.python : 2 | |
meta.function-call.static : 2 | |
meta.function-call.static.php : 3 | |
meta.function-call.twig : 1 | |
meta.function-name : 2 | |
meta.function.argument.typehinted : 1 | |
meta.function.arguments.twig : 1 | |
meta.function.decorator : 2 | |
meta.function.decorator.python : 2 | |
meta.function.environment : 9 | |
meta.function.js : 4 | |
meta.function.method.with-arguments.ruby : 3 | |
meta.function.parameters.python : 1 | |
meta.function.python : 3 | |
meta.function.section : 3 | |
meta.group.braces.round : 4 | |
meta.group.braces.square : 4 | |
meta.group.braces.tex : 3 | |
meta.group.regexp : 1 | |
meta.hash : 1 | |
meta.hash.twig : 1 | |
meta.image.inline.markdown : 7 | |
meta.include.php : 1 | |
meta.item-access : 1 | |
meta.item-access.arguments : 1 | |
meta.line.entry.logfile : 14 | |
meta.line.error.logfile : 14 | |
meta.line.exit.logfile : 14 | |
meta.link : 33 | |
meta.link.inline : 2 | |
meta.link.inline.markdown : 5 | |
meta.link.inline.restructuredtext : 4 | |
meta.link.inline.textile : 1 | |
meta.link.reference : 2 | |
meta.link.reference.def.restructuredtext : 2 | |
meta.method-call : 1 | |
meta.method-return.actionscript.3 : 1 | |
meta.method.declaration : 1 | |
meta.method.identifier : 1 | |
meta.method.return-type.source.cs : 1 | |
meta.namespace : 1 | |
meta.other.directive.restructuredtext : 2 | |
meta.other.inherited-class : 1 | |
meta.other.inherited-class.php : 3 | |
meta.paragraph.list.markdown : 2 | |
meta.paragraph.markdown : 2 | |
meta.paragraph.text : 1 | |
meta.preprocessor : 22 | |
meta.preprocessor.at-rule : 38 | |
meta.preprocessor.c : 50 | |
meta.preprocessor.c.include : 13 | |
meta.preprocessor.macro.c : 3 | |
meta.property-group : 42 | |
meta.property-list : 2 | |
meta.property-list.css : 5 | |
meta.property-list.scss : 2 | |
meta.property-name : 6 | |
meta.property-name.css : 17 | |
meta.property-name.sass : 1 | |
meta.property-name.scss : 1 | |
meta.property-value : 131 | |
meta.property-value.constant.named-color.css.keyword.other.unit.css : 1 | |
meta.property-value.constant.numeric.css : 1 | |
meta.property-value.css : 19 | |
meta.property-value.scss : 5 | |
meta.raw.block.restructuredtext : 10 | |
meta.require : 33 | |
meta.scope.case-block.shell : 4 | |
meta.scope.case-body.shell : 4 | |
meta.scope.changed-files.svn : 1 | |
meta.scope.for-in-loop.shell : 4 | |
meta.scope.heredoc : 1 | |
meta.section : 23 | |
meta.section.attributes.haml : 1 | |
meta.selector : 39 | |
meta.selector.css : 169 | |
meta.selector.jquery : 1 | |
meta.separator : 80 | |
meta.separator.diff : 13 | |
meta.separator.markdown : 6 | |
meta.set.variable : 1 | |
meta.sgml.html : 49 | |
meta.structure.array.json : 36 | |
meta.structure.dictionary : 19 | |
meta.structure.dictionary.json : 80 | |
meta.structure.dictionary.key : 1 | |
meta.structure.dictionary.value : 7 | |
meta.structure.dictionary.value.json : 50 | |
meta.tag : 167 | |
meta.tag.any.html : 5 | |
meta.tag.block.any : 5 | |
meta.tag.block.any.html : 4 | |
meta.tag.block.script : 4 | |
meta.tag.entity : 2 | |
meta.tag.haml : 1 | |
meta.tag.inline : 44 | |
meta.tag.inline.any : 5 | |
meta.tag.inline.any.html : 8 | |
meta.tag.inline.any.twig : 1 | |
meta.tag.no-content : 1 | |
meta.tag.other : 4 | |
meta.tag.other.html : 6 | |
meta.tag.preprocessor.xml : 81 | |
meta.tag.sgml : 2 | |
meta.tag.sgml-declaration.doctype : 4 | |
meta.tag.sgml.doctype : 78 | |
meta.tag.sgml.doctype.html : 3 | |
meta.tag.sgml.doctype.xml : 7 | |
meta.tag.sgml.html : 7 | |
meta.tag.structure.any.html : 12 | |
meta.tag.template.block.twig : 1 | |
meta.tag.template.value.twig : 1 | |
meta.tag.xml : 2 | |
meta.toc-list.comment.diff : 2 | |
meta.toc-list.id : 4 | |
meta.toc-list.line-number.diff : 1 | |
meta.use : 1 | |
meta.use.php : 1 | |
meta.variable-declaration.sass : 1 | |
meta.variable-usage.sass : 1 | |
meta.verbatim : 7 | |
meta.xml-processing : 53 | |
meta.xml-processing.html : 1 | |
none : 128 | |
object.property.function.prototype.js : 3 | |
other.add : 4 | |
other.package.exclude : 4 | |
other.preprocessor : 5 | |
other.preprocessor.c : 23 | |
other.remove : 4 | |
override.htmlTagPairOccurrenceIndication : 1 | |
override.pydevOccurrenceIndication : 1 | |
override.rubyBlockPairOccurrenceIndication : 1 | |
override.searchResultIndication : 1 | |
override.xmlTagPairOccurrenceIndication : 1 | |
property : 1 | |
puctuation : 1 | |
punctuation : 45 | |
punctuation.definition : 6 | |
punctuation.definition.arbitrary-repitition : 2 | |
punctuation.definition.arguments : 2 | |
punctuation.definition.arguments.begin.latex : 3 | |
punctuation.definition.arguments.end.latex : 3 | |
punctuation.definition.arguments.latex : 3 | |
punctuation.definition.array : 33 | |
punctuation.definition.array.begin : 3 | |
punctuation.definition.array.begin.php : 1 | |
punctuation.definition.array.end : 3 | |
punctuation.definition.array.end.php : 1 | |
punctuation.definition.blockquote.markdown : 9 | |
punctuation.definition.bold : 33 | |
punctuation.definition.bold.markdown : 6 | |
punctuation.definition.character-class : 2 | |
punctuation.definition.comment : 39 | |
punctuation.definition.comment) : 2 | |
punctuation.definition.comment.tex : 3 | |
punctuation.definition.constant : 2 | |
punctuation.definition.constant.begin.markdown : 2 | |
punctuation.definition.constant.css : 4 | |
punctuation.definition.constant.end.markdown : 2 | |
punctuation.definition.constant.markdown : 2 | |
punctuation.definition.constant.math.tex : 3 | |
punctuation.definition.decorator : 1 | |
punctuation.definition.dictionary : 2 | |
punctuation.definition.directive.restructuredtext : 2 | |
punctuation.definition.end : 1 | |
punctuation.definition.entity : 33 | |
punctuation.definition.entity.css : 2 | |
punctuation.definition.entry : 2 | |
punctuation.definition.fenced.markdown : 2 | |
punctuation.definition.field.restructuredtext : 2 | |
punctuation.definition.group : 1 | |
punctuation.definition.heading : 34 | |
punctuation.definition.heading.markdown : 4 | |
punctuation.definition.heading.restructuredtext : 2 | |
punctuation.definition.inheritance.begin.python : 1 | |
punctuation.definition.inheritance.end.python : 1 | |
punctuation.definition.inserted.diff : 12 | |
punctuation.definition.intepreted.restructuredtext : 2 | |
punctuation.definition.italic : 35 | |
punctuation.definition.italic.markdown : 6 | |
punctuation.definition.link.markdown : 3 | |
punctuation.definition.link.restructuredtext : 8 | |
punctuation.definition.list : 6 | |
punctuation.definition.list_item : 1 | |
punctuation.definition.list_item.markdown : 8 | |
punctuation.definition.location.restructuredtext : 2 | |
punctuation.definition.logical-expression.shell : 4 | |
punctuation.definition.map : 1 | |
punctuation.definition.metadata.markdown : 6 | |
punctuation.definition.parameters : 34 | |
punctuation.definition.parameters-group.begin.python : 1 | |
punctuation.definition.parameters-group.end.python : 1 | |
punctuation.definition.parameters.begin.js : 6 | |
punctuation.definition.parameters.end.js : 6 | |
punctuation.definition.prolog.haml : 1 | |
punctuation.definition.range.diff : 5 | |
punctuation.definition.raw.markdown : 9 | |
punctuation.definition.raw.restructuredtext : 4 | |
punctuation.definition.set : 1 | |
punctuation.definition.string : 102 | |
punctuation.definition.string.begin : 14 | |
punctuation.definition.string.begin.c : 6 | |
punctuation.definition.string.begin.html : 13 | |
punctuation.definition.string.begin.json : 3 | |
punctuation.definition.string.begin.markdown : 7 | |
punctuation.definition.string.begin.perl : 3 | |
punctuation.definition.string.begin.php : 4 | |
punctuation.definition.string.begin.ruby : 4 | |
punctuation.definition.string.begin.shell : 4 | |
punctuation.definition.string.begin.tex : 3 | |
punctuation.definition.string.begin.xml : 1 | |
punctuation.definition.string.end : 14 | |
punctuation.definition.string.end.c : 6 | |
punctuation.definition.string.end.html : 9 | |
punctuation.definition.string.end.json : 3 | |
punctuation.definition.string.end.markdown : 7 | |
punctuation.definition.string.end.perl : 3 | |
punctuation.definition.string.end.php : 4 | |
punctuation.definition.string.end.ruby : 4 | |
punctuation.definition.string.end.shell : 4 | |
punctuation.definition.string.end.tex : 3 | |
punctuation.definition.string.end.xml : 1 | |
punctuation.definition.string.html : 1 | |
punctuation.definition.string.markdown : 2 | |
punctuation.definition.string.php : 1 | |
punctuation.definition.string.restructuredtext : 2 | |
punctuation.definition.string.ruby : 2 | |
punctuation.definition.string.xml : 1 | |
punctuation.definition.tag : 23 | |
punctuation.definition.tag.*.* : 1 | |
punctuation.definition.tag.begin : 17 | |
punctuation.definition.tag.begin.ee : 1 | |
punctuation.definition.tag.begin.html : 6 | |
punctuation.definition.tag.begin.xml : 2 | |
punctuation.definition.tag.end : 17 | |
punctuation.definition.tag.end.ee : 1 | |
punctuation.definition.tag.end.html : 6 | |
punctuation.definition.tag.end.xml : 2 | |
punctuation.definition.tag.html : 21 | |
punctuation.definition.tag.xml : 2 | |
punctuation.definition.variable : 43 | |
punctuation.definition.variable.perl : 3 | |
punctuation.definition.variable.ruby : 3 | |
punctuation.definition.vector : 1 | |
punctuation.delimiter.method : 1 | |
punctuation.scss : 1 | |
punctuation.section : 2 | |
punctuation.section.array : 3 | |
punctuation.section.embedded : 70 | |
punctuation.section.embedded) : 8 | |
punctuation.section.embedded.begin : 7 | |
punctuation.section.embedded.begin.asp : 1 | |
punctuation.section.embedded.begin.php : 10 | |
punctuation.section.embedded.coffee : 6 | |
punctuation.section.embedded.end : 7 | |
punctuation.section.embedded.end.asp : 1 | |
punctuation.section.embedded.end.php : 9 | |
punctuation.section.embedded.ruby : 12 | |
punctuation.section.function : 1 | |
punctuation.section.function.css : 3 | |
punctuation.section.function.ruby : 2 | |
punctuation.section.function.scss : 1 | |
punctuation.section.group.tex : 3 | |
punctuation.section.property-list.begin.scss : 1 | |
punctuation.section.property-list.css : 10 | |
punctuation.section.property-list.end.scss : 1 | |
punctuation.section.scope : 5 | |
punctuation.section.tag.twig : 1 | |
punctuation.separator : 3 | |
punctuation.separator.annotation.python : 1 | |
punctuation.separator.annotation.result.python : 1 | |
punctuation.separator.array : 2 | |
punctuation.separator.continuation : 4 | |
punctuation.separator.inheritance : 1 | |
punctuation.separator.inheritance.php : 2 | |
punctuation.separator.key-value : 4 | |
punctuation.separator.key-value.css : 6 | |
punctuation.separator.key-value.html : 5 | |
punctuation.separator.key-value.restructuredtext : 2 | |
punctuation.separator.key-value.scss : 1 | |
punctuation.separator.key-value.yaml : 2 | |
punctuation.separator.object.twig : 1 | |
punctuation.separator.other : 1 | |
punctuation.separator.variable : 7 | |
punctuation.terminator.expression.php : 3 | |
punctuation.terminator.rule.css : 8 | |
punctuation.terminator.rule.scss : 1 | |
punctuation.terminator.statement.js : 2 | |
punctuation.whitespace.comment : 1 | |
punctuation.whitespace.embedded : 1 | |
pyflakeswarning : 1 | |
python : 1 | |
remark.done : 1 | |
remark.error : 1 | |
remark.exception : 1 | |
remark.fixme : 1 | |
remark.info : 1 | |
remark.note : 1 | |
remark.todo : 1 | |
remark.wait : 1 | |
remark.warning : 1 | |
section-name : 1 | |
source : 311 | |
source.*.embedded : 1 | |
source.adb : 1 | |
source.angular.embedded.html : 6 | |
source.camlp4.embedded : 1 | |
source.camlp4.embedded.parser.ocaml : 1 | |
source.clojure : 3 | |
source.console : 1 | |
source.css : 30 | |
source.css.embedded : 6 | |
source.css.embedded.html : 13 | |
source.css.less : 7 | |
source.diff : 46 | |
source.java : 3 | |
source.js : 14 | |
source.js.embedded : 6 | |
source.js.embedded.html : 12 | |
source.json : 32 | |
source.less : 2 | |
source.ocaml : 34 | |
source.php : 2 | |
source.php.embedded : 2 | |
source.php.embedded.block.html : 4 | |
source.php.embedded.line : 12 | |
source.php.embedded.line.html : 5 | |
source.plist : 8 | |
source.python : 27 | |
source.r.embedded : 1 | |
source.ruby : 19 | |
source.ruby.embedded : 25 | |
source.ruby.embedded.source : 12 | |
source.ruby.rails.embedded.html : 7 | |
source.sass : 5 | |
source.scss : 10 | |
source.shell : 7 | |
source.sql : 2 | |
source.yaml-tmlanguage : 3 | |
[std] storage : 209 | |
storage.clojure : 1 | |
[std] storage.modifier : 22 | |
storage.modifier.extends : 2 | |
storage.modifier.extends.java : 1 | |
storage.modifier.extends.php : 3 | |
storage.modifier.global : 1 | |
storage.modifier.global.python : 4 | |
storage.modifier.implements : 2 | |
storage.modifier.implements.java : 1 | |
storage.modifier.import.java : 4 | |
storage.modifier.java : 5 | |
storage.modifier.js : 2 | |
storage.modifier.source.cs : 1 | |
storage.modifier.sql : 2 | |
[std] storage.type : 57 | |
storage.type.accessor : 1 | |
storage.type.annotation.java : 1 | |
storage.type.attr : 2 | |
storage.type.c : 3 | |
storage.type.class : 1 | |
storage.type.class.php : 3 | |
storage.type.class.python : 5 | |
storage.type.function : 4 | |
storage.type.function.js : 9 | |
storage.type.function.php : 4 | |
storage.type.function.python : 4 | |
storage.type.generic.source.cs : 1 | |
storage.type.import : 1 | |
storage.type.java : 1 | |
storage.type.js : 7 | |
storage.type.method : 20 | |
storage.type.module : 1 | |
storage.type.namespace : 1 | |
storage.type.object.array.java : 1 | |
storage.type.php : 3 | |
storage.type.primitive.array.java : 2 | |
storage.type.primitive.java : 1 | |
storage.type.regexp.group : 1 | |
storage.type.source.cs : 1 | |
storage.type.sql : 2 | |
storage.type.templatetag : 1 | |
storage.type.templatetag.django : 1 | |
storage.type.user-defined : 5 | |
storage.type.variable : 1 | |
storage.type.variant.polymorphic : 1 | |
[std] string : 574 | |
string.docstring : 1 | |
[std] string.interpolated : 19 | |
string.interpolated.backtick.shell : 1 | |
string.interpolation : 2 | |
string.js : 1 | |
string.literal : 8 | |
string.other.link : 52 | |
string.other.link.description.markdown : 5 | |
string.other.link.description.title.markdown : 3 | |
string.other.link.markdown : 1 | |
string.other.link.title : 1 | |
string.other.link.title.markdown : 7 | |
string.other.link.title.restructuredtext : 6 | |
string.other.math.tex : 6 | |
[std] string.quoted : 32 | |
string.quoted.docinfo.doctype.DTD : 13 | |
string.quoted.double : 7 | |
string.quoted.double.block : 1 | |
string.quoted.double.block.python : 4 | |
string.quoted.double.css : 1 | |
string.quoted.double.doctype : 1 | |
string.quoted.double.doctype.identifiers-and-DTDs.html : 4 | |
string.quoted.double.html : 20 | |
string.quoted.double.include : 2 | |
string.quoted.double.js : 3 | |
string.quoted.double.json : 60 | |
string.quoted.double.php : 4 | |
string.quoted.double.ruby : 1 | |
string.quoted.double.shell : 1 | |
string.quoted.double.twig : 1 | |
string.quoted.double.xml : 4 | |
string.quoted.other.js : 2 | |
string.quoted.other.lt-gt.include : 2 | |
string.quoted.other.lt-gt.include.c : 3 | |
string.quoted.other.xml : 1 | |
string.quoted.single : 7 | |
string.quoted.single.block : 1 | |
string.quoted.single.block.python : 1 | |
string.quoted.single.css : 1 | |
string.quoted.single.html : 7 | |
string.quoted.single.js : 4 | |
string.quoted.single.php : 4 | |
string.quoted.single.sql : 1 | |
string.quoted.single.twig : 1 | |
string.quoted.single.xml : 2 | |
string.quotedxx : 1 | |
[std] string.regexp : 191 | |
string.regexp.arbitrary-repitition : 27 | |
string.regexp.arbitrary-repitition.php : 1 | |
string.regexp.character-class : 9 | |
string.regexp.character-class.php : 1 | |
string.regexp.classic.ruby : 2 | |
string.regexp.double-quoted.php : 1 | |
string.regexp.group : 6 | |
string.regexp.single-quoted.php : 1 | |
[std] string.unquoted : 38 | |
string.unquoted.cdata.xml : 1 | |
string.unquoted.embedded : 4 | |
string.unquoted.heredoc : 12 | |
string.unquoted.old-plist : 3 | |
string.unquoted.tag-string : 1 | |
sublimeline.illegal : 1 | |
sublimelint.illegal : 1 | |
sublimelint.notes : 1 | |
sublimelint.violation : 1 | |
sublimelint.warning : 1 | |
sublimelinter.annotations : 6 | |
sublimelinter.gutter-mark : 2 | |
sublimelinter.illegal : 1 | |
sublimelinter.mark.error : 2 | |
sublimelinter.mark.warning : 2 | |
sublimelinter.notes : 2 | |
sublimelinter.outline : 1 | |
sublimelinter.outline.illegal : 14 | |
sublimelinter.outline.notes : 7 | |
sublimelinter.outline.violation : 14 | |
sublimelinter.outline.warning : 14 | |
sublimelinter.underline : 1 | |
sublimelinter.underline.illegal : 14 | |
sublimelinter.underline.violation : 13 | |
sublimelinter.underline.warning : 14 | |
sublimelinter.violation : 1 | |
sublimelinter.warning : 1 | |
[std] support : 66 | |
[std] support.class : 149 | |
support.class.builtin : 2 | |
support.class.dom : 1 | |
support.class.exception : 4 | |
support.class.implements : 1 | |
support.class.js : 10 | |
support.class.js.jquery : 1 | |
support.class.php : 3 | |
support.class.prototype.js : 3 | |
support.class.ruby : 7 | |
[std] support.constant : 158 | |
support.constant.actionscript.2 : 1 | |
support.constant.color : 5 | |
support.constant.color.w3c-standard-color-name.css : 1 | |
support.constant.core : 3 | |
support.constant.core.php : 2 | |
support.constant.css : 1 | |
support.constant.dom : 1 | |
support.constant.dom.js : 1 | |
support.constant.ee : 1 | |
support.constant.font-name : 2 | |
support.constant.font-name.css : 5 | |
support.constant.font-name.scss : 1 | |
support.constant.js : 2 | |
support.constant.name.tm-language-def : 1 | |
support.constant.named-color.css : 40 | |
support.constant.property-value : 7 | |
support.constant.property-value.css : 96 | |
support.constant.property-value.css.sass : 2 | |
support.constant.property-value.sass : 2 | |
support.constant.property-value.scss : 1 | |
support.constant.std.php : 2 | |
support.constant.tm-language-def : 1 | |
[std] support.function : 212 | |
support.function.C99.c : 3 | |
support.function.activerecord.rails : 4 | |
support.function.activesupport.rails : 1 | |
support.function.addon.ee : 1 | |
support.function.any-method : 39 | |
support.function.any-method.builtin.css : 1 | |
support.function.any-method.c : 3 | |
support.function.be.latex : 3 | |
support.function.builtin : 1 | |
support.function.builtin.shell : 4 | |
support.function.builtin_functions : 1 | |
support.function.clojure : 1 | |
support.function.construct : 10 | |
support.function.construct.php : 13 | |
support.function.dom.js : 4 | |
support.function.event-handler.js : 3 | |
support.function.filter.twig : 1 | |
support.function.filter.variable.twig : 1 | |
support.function.general.tex : 3 | |
support.function.hash_md.php : 1 | |
support.function.js.jquery : 1 | |
support.function.less : 1 | |
support.function.magic : 1 | |
support.function.magic.python : 1 | |
support.function.match.clojure : 1 | |
support.function.misc : 2 | |
support.function.misc.css : 3 | |
support.function.misc.scss : 2 | |
support.function.name : 1 | |
support.function.name.sass : 2 | |
support.function.perl : 3 | |
support.function.properties : 1 | |
support.function.section.latex : 3 | |
support.function.tester : 1 | |
support.function.twig : 1 | |
support.ipython.in : 1 | |
support.ipython.out : 1 | |
support.keyword.node : 1 | |
support.operator.quantifier : 1 | |
support.orther.namespace.use.php : 1 | |
[std] support.other : 3 | |
support.other.django.module : 2 | |
support.other.keyword : 1 | |
support.other.module : 4 | |
support.other.namespace : 2 | |
support.other.namespace.php : 1 | |
support.other.namespace.use-as.php : 1 | |
support.other.variable : 75 | |
support.property : 1 | |
[std] support.type : 119 | |
support.type.class.python : 1 | |
support.type.django.model : 1 | |
support.type.dom : 1 | |
support.type.exception : 8 | |
support.type.exception.python : 3 | |
support.type.function.global : 1 | |
support.type.proerty : 1 | |
support.type.property-name : 7 | |
support.type.property-name.css : 65 | |
support.type.property-name.sass : 3 | |
support.type.python : 4 | |
[std] support.variable : 27 | |
support.variable.language.ee : 1 | |
support.variable.magic.python : 1 | |
text : 113 | |
text.html : 7 | |
text.html.basic : 53 | |
text.html.django : 5 | |
text.html.markdown : 22 | |
text.html.php.source : 4 | |
text.html.ruby : 38 | |
text.plain : 3 | |
text.restructuredtext : 4 | |
text.tex.latex : 16 | |
text.xml : 6 | |
[std] variable : 196 | |
variable.assignment.coffee : 12 | |
variable.documentroot : 1 | |
variable.documentroot.xml : 1 | |
variable.interpolation : 33 | |
variable.js : 5 | |
[std] variable.language : 65 | |
variable.language.fenced.markdown : 4 | |
variable.language.java : 1 | |
variable.language.js : 8 | |
variable.language.namespace.php : 1 | |
variable.language.ruby : 7 | |
[std] variable.other : 76 | |
variable.other.block : 1 | |
variable.other.class : 1 | |
variable.other.constant : 13 | |
variable.other.constant.ruby : 5 | |
variable.other.django.settings : 1 | |
variable.other.ee : 1 | |
variable.other.external-symbol : 4 | |
variable.other.global.php : 2 | |
variable.other.global.safer.php : 4 | |
variable.other.jinja : 1 | |
variable.other.jinja.filter : 1 | |
variable.other.less : 8 | |
variable.other.loop.shell : 4 | |
variable.other.normal : 4 | |
variable.other.normal.shell : 4 | |
variable.other.object : 1 | |
variable.other.php : 6 | |
variable.other.predefined.perl : 3 | |
variable.other.property : 9 | |
variable.other.property.php : 4 | |
variable.other.property.twig : 1 | |
variable.other.readwrite.global : 2 | |
variable.other.readwrite.global.perl : 3 | |
variable.other.readwrite.instance : 2 | |
variable.other.readwrite.instance.coffee : 6 | |
variable.other.readwrite.instance.ruby : 3 | |
variable.other.twig : 2 | |
[std] variable.parameter : 131 | |
variable.parameter.definition.label.latex : 3 | |
variable.parameter.ee : 1 | |
variable.parameter.function : 34 | |
variable.parameter.function.language : 1 | |
variable.parameter.function.latex : 3 | |
variable.parameter.function.python : 1 | |
variable.parameter.misc.css : 4 | |
variable.parameter.php : 1 | |
variable.parameter.sass : 3 | |
variable.parameter.url : 1 | |
variable.scss : 2 | |
wordhighlight : 1 | |
| : 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment