Skip to content

Instantly share code, notes, and snippets.

@sparr
Last active May 8, 2016 02:22
Show Gist options
  • Select an option

  • Save sparr/dfff6ae42abe3b9d0733 to your computer and use it in GitHub Desktop.

Select an option

Save sparr/dfff6ae42abe3b9d0733 to your computer and use it in GitHub Desktop.

Revisions

  1. sparr revised this gist Aug 13, 2014. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions scopecount
    Original file line number Diff line number Diff line change
    @@ -10,7 +10,7 @@
    209 : entity.other.attribute-name
    199 : entity.other.inherited-class
    196 : variable [std]
    192 : meta
    192 : meta [std]
    191 : string.regexp [std]
    181 : constant.numeric [std]
    172 : entity.name.function
    @@ -158,7 +158,7 @@
    16 : declaration.tag.inline
    16 : meta.diff.header.from-file
    16 : text.tex.latex
    15 : markup
    15 : markup [std]
    14 : punctuation.definition.string.end
    14 : punctuation.definition.string.begin
    14 : sublimelinter.outline.violation
  2. sparr revised this gist Aug 13, 2014. 2 changed files with 1546 additions and 1716 deletions.
    3,176 changes: 1,467 additions & 1,709 deletions scopecount
    1,467 additions, 1,709 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
    86 changes: 79 additions & 7 deletions sublime-text-theme-data.py
    Original file line number Diff line number Diff line change
    @@ -10,6 +10,75 @@

    r = requests.get('https://raw.githubusercontent.com/aziz/tmTheme-Editor/master/public/gallery.json')

    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.underline",
    "markup.link",
    "markup.bold",
    "markup.heading",
    "markup.italic",
    "markup.list",
    "markup.numbered",
    "markup.unnumbered",
    "markup.quote",
    "markup.raw",
    "markup.other",
    "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",
    ]

    if r.status_code != 200:
    print "Failure, status code:",r.status_code
    exit(1)
    @@ -18,7 +87,7 @@

    for theme in r.json():
    name = theme['name'].encode(sys.stdout.encoding or 'ascii', errors='replace')
    print "Trying to get/parse", name,"from",theme['url']
    # print "Trying to get/parse", name,"from",theme['url']
    path = urlparse.urlsplit(theme['url']).path
    filename = posixpath.basename(path)
    if os.path.exists(filename):
    @@ -27,7 +96,7 @@
    else:
    theme_request = requests.get(theme['url'])
    if theme_request.status_code != 200:
    print "Failed to download", name,", status code:",theme_request.status_code
    # print "Failed to download", name,", status code:",theme_request.status_code
    continue
    theme_contents = theme_request.text
    with open (filename,"w") as theme_file:
    @@ -36,16 +105,19 @@
    try:
    plist = plistlib.readPlistFromString(theme_contents)
    except:
    print "Failed to parse", name
    # print "Failed to parse", name
    continue
    if 'settings' in plist:
    for setting in plist['settings']:
    if 'scope' in setting:
    for i in setting['scope'].split(', '):
    for j in i.split(','):
    scopes[j] += 1
    print "Parsed", name
    for l in i.split(' -'):
    for j in l.split(','):
    for k in j.split(' '):
    if len(k)>0:
    scopes[k] += 1
    # print "Parsed", name

    for s,c in scopes.most_common():
    print c,":",s
    print c,":",s,"[std]" if s in standard_scopes else ""

  3. sparr revised this gist Aug 13, 2014. 1 changed file with 51 additions and 0 deletions.
    51 changes: 51 additions & 0 deletions sublime-text-theme-data.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,51 @@
    #!/usr/bin/env python

    import requests
    import plistlib
    from collections import Counter
    import posixpath
    import urlparse
    import sys
    import os

    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
    exit(1)

    scopes = Counter()

    for theme in r.json():
    name = theme['name'].encode(sys.stdout.encoding or 'ascii', errors='replace')
    print "Trying to get/parse", name,"from",theme['url']
    path = urlparse.urlsplit(theme['url']).path
    filename = posixpath.basename(path)
    if os.path.exists(filename):
    with open (filename, "r") as theme_file:
    theme_contents = theme_file.read()
    else:
    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") as theme_file:
    theme_file.write(theme_contents.encode(sys.stdout.encoding or 'ascii', errors='replace'))

    try:
    plist = plistlib.readPlistFromString(theme_contents)
    except:
    print "Failed to parse", name
    continue
    if 'settings' in plist:
    for setting in plist['settings']:
    if 'scope' in setting:
    for i in setting['scope'].split(', '):
    for j in i.split(','):
    scopes[j] += 1
    print "Parsed", name

    for s,c in scopes.most_common():
    print c,":",s

  4. sparr created this gist Aug 13, 2014.
    1,711 changes: 1,711 additions & 0 deletions scopecount
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,1711 @@
    225 : string
    225 : comment
    223 : keyword
    209 : storage
    206 : support.function
    199 : entity.other.inherited-class
    190 : entity.other.attribute-name
    178 : constant.numeric
    177 : entity.name.tag
    170 : entity.name.function
    152 : support.constant
    150 : variable
    149 : support.class
    141 : invalid
    139 : constant
    138 : markup.deleted
    136 : markup.inserted
    134 : constant.language
    128 : none
    128 : entity.name.class
    124 : variable.parameter
    121 : markup.changed
    116 : support.type
    112 : string.regexp
    98 : meta.tag
    97 : punctuation.definition.string
    93 : constant.character
    91 : constant.other
    91 : meta.diff.header
    83 : keyword.operator
    82 : markup.list
    82 : invalid.deprecated
    80 : meta.separator
    79 : meta.diff
    78 : markup.quote
    75 : support.other.variable
    75 : variable.other
    72 : invalid.illegal
    72 : markup.heading
    70 : declaration.tag
    69 : markup.bold
    69 : markup.italic
    65 : variable.language
    65 : constant.character.escape
    64 : support
    64 : support.type.property-name.css
    61 : entity.name.type.class
    60 : text source
    58 : entity
    56 : punctuation.section.embedded
    55 : storage.type
    51 : keyword.other.unit
    51 : keyword.other.special-method
    50 : string source
    49 : constant.other.symbol
    48 : constant.other.color
    46 : meta.tag entity
    45 : string.other.link
    45 : entity.name.type
    45 : meta.selector.css entity.other.attribute-name.id
    44 : string constant
    43 : entity.name.section
    42 : meta.property-value support.constant.property-value.css
    42 : meta.property-group support.constant.property-value.css
    41 : punctuation.definition.variable
    41 : meta.property-value constant
    40 : string variable
    39 : meta.property-value support.constant.named-color.css
    38 : support.function.any-method
    38 : meta.preprocessor.at-rule keyword.control.at-rule
    37 : markup.raw.inline
    37 : entity.other.attribute-name.id
    37 : meta.constructor.argument.css
    37 : meta.tag.preprocessor.xml
    37 : meta.selector.css entity.other.attribute-name.class
    37 : punctuation.definition.comment
    36 : meta.selector.css entity.name.tag
    35 : entity.name.tag.css
    34 : variable.parameter.function
    34 : meta.selector
    33 : meta.link
    33 : meta.class
    33 : keyword.control
    33 : meta.require
    33 : punctuation.definition.parameters
    33 : punctuation.definition.entity
    33 : punctuation.definition.bold
    33 : punctuation.definition.array
    33 : punctuation.definition.italic
    33 : markup.heading punctuation.definition.heading
    33 : variable.interpolation
    32 : meta.tag.sgml.doctype
    31 : meta.function-call
    31 : markup.raw
    30 : markup.underline
    27 : entity.other.attribute-name.class.css
    27 : support.variable
    27 : meta.preprocessor.c
    26 : entity.other.attribute-name.id.css
    25 : string.regexp constant.character.escape
    25 : string.regexp string.regexp.arbitrary-repitition
    25 : string.regexp source.ruby.embedded
    24 : keyword.operator.js
    24 : string.unquoted
    24 : source
    24 : meta.structure.dictionary.json string.quoted.double.json
    23 : meta.preprocessor.c keyword
    22 :
    22 : string.quoted source
    22 : meta.tag.sgml.doctype string
    22 : entity.name
    21 : meta.tag.preprocessor.xml string
    21 : keyword.control.import
    21 : meta.selector.css
    21 : meta.xml-processing
    21 : meta.tag.sgml.doctype entity
    21 : meta.selector.css entity.other.attribute-name.tag.pseudo-class
    21 : meta.preprocessor
    21 : meta.tag.preprocessor.xml entity
    21 : entity.other.attribute-name.pseudo-class.css
    20 : storage.type.method
    20 : meta.tag.inline
    20 : invalid.deprecated.trailing-whitespace
    20 : meta.tag.inline entity
    20 : declaration.tag entity
    20 : punctuation.definition.tag
    20 : storage.modifier
    19 : entity.name.filename.find-in-files
    19 : meta.diff.range
    19 : source entity.name.tag
    19 : declaration.xml-processing
    18 : source entity.other.attribute-name
    18 : declaration.section entity.name.section
    18 : text.html.ruby source
    18 : keyword.other.unit.css
    17 : meta.section entity.name.section
    17 : punctuation.definition.tag.begin
    17 : constant.numeric.line-number.find-in-files - match
    17 : keyword.other.name-of-parameter.objc
    17 : punctuation.definition.tag.end
    16 : meta.diff.header.to-file
    16 : meta.xml-processing entity
    16 : meta.xml-processing string
    16 : constant.other.color.rgb-value.css
    16 : keyword.operator.class
    16 : constant.character.escaped
    16 : meta.diff.header.from-file
    16 : meta.sgml.html meta.doctype
    16 : meta.sgml.html meta.doctype entity
    16 : meta.sgml.html meta.doctype string
    15 : string.quoted.double.html
    14 : sublimelinter.outline.violation
    14 : punctuation
    14 : markup.inserted.diff
    14 : markup comment
    14 : meta.property-name.css
    14 : meta.line.entry.logfile
    14 : markup.deleted.diff
    14 : sublimelinter.underline.warning
    14 : meta.line.error.logfile
    14 : markup.heading entity
    14 : sublimelinter.underline.illegal
    14 : sublimelinter.outline.illegal
    14 : sublimelinter.outline.warning
    14 : meta.line.exit.logfile
    14 : other.preprocessor.c
    13 : entity.name.tag.namespace
    13 : entity.other.attribute-name.namespace
    13 : sublimelinter.underline.violation
    13 : text
    13 : meta.separator.diff
    13 : punctuation.definition.tag.html
    13 : variable.other.constant
    13 : string.quoted.docinfo.doctype.DTD
    13 : keyword.other.special-method.ruby
    13 : meta.diff.index
    12 : declaration.xml-processing string
    12 : entity.other.attribute-name.html
    12 : declaration.xml-processing entity
    12 : meta.block-level
    12 : string.interpolated
    12 : declaration.sgml.html declaration.doctype entity
    12 : meta.cast
    12 : support.constant.property-value.css
    12 : source.php.embedded.line
    12 : declaration.sgml.html declaration.doctype string
    12 : declaration.sgml.html declaration.doctype
    11 : string source.ruby
    11 : entity.other.less.mixin
    10 : punctuation.definition.string.end
    10 : punctuation.definition.string.begin
    10 : support.function.construct
    10 : meta.brace.erb.html
    10 : constant.character.entity
    10 : text.html.markdown markup.raw.inline
    10 : punctuation.section.embedded.begin.php
    10 : text source text source
    10 : support.class.js
    10 : text source string.unquoted
    10 : meta.doctype
    9 : markup.raw.inline.markdown
    9 : punctuation.definition.blockquote.markdown
    9 : text.html.basic source.js.embedded.html
    9 : other.preprocessor.c entity
    9 : meta.embedded
    9 : storage.type.function.js
    9 : comment.block
    9 : punctuation.definition.string.begin.html
    9 : variable.other.property
    9 : source.css
    9 : constant.numeric.css
    9 : text.html.markdown meta.dummy.line-break
    9 : punctuation.section.embedded.end.php
    9 : string.regexp.character-class
    8 : declaration.tag.inline entity
    8 : declaration.tag.inline
    8 : punctuation.definition.link.restructuredtext
    8 : markup.underline.link
    8 : source.ocaml keyword.operator.symbol.infix.floating-point
    8 : variable.other.less
    8 : keyword.control.at-rule.import.css
    8 : string.literal
    8 : entity.other.attribute-name.class
    8 : meta.property-value.css
    8 : punctuation.terminator.rule.css
    8 : keyword.other.important.css
    8 : source string source
    8 : punctuation.definition.list_item.markdown
    8 : entity.other.attribute-name.pseudo-element.css
    8 : support.type.exception
    8 : variable.language.js
    8 : comment.block.html
    8 : punctuation.section.embedded -(source string source punctuation.section.embedded)
    8 : source comment.block
    8 : punctuation.definition.raw.markdown
    8 : source.ocaml keyword.operator.symbol.prefix.floating-point
    7 : constant.character.entity.html
    7 : support.function.construct.php
    7 : meta.function-call.py
    7 : doctype
    7 : keyword.control.ruby
    7 : string.quoted.single.html
    7 : punctuation.definition.string.begin.markdown
    7 : meta.verbatim
    7 : meta.image.inline.markdown
    7 : keyword.other.phpdoc
    7 : declaration.doctype.DTD
    7 : entity.name.tag.script.html
    7 : punctuation.definition.string.end.markdown
    7 : meta.brace.curly.js
    7 : string constant.character.escape
    7 : string.quoted.double
    7 : string.interpolated constant.character.escape
    7 : markup.raw.block.markdown
    7 : string.quoted.single
    7 : punctuation.section.embedded.end
    7 : constant.other.symbol.ruby
    7 : meta.tag.sgml.doctype.xml
    7 : string constant.other.placeholder
    7 : entity.name.function.js
    7 : storage.type.js
    7 : sublimelinter.outline.notes
    7 : punctuation.separator.variable
    7 : variable.language.ruby
    7 : meta.tag.sgml.html
    7 : declaration.doctype
    7 : meta.function-call.object.php
    7 : punctuation.section.embedded.begin
    7 : entity.name.tag.wildcard.css
    7 : text.html.ruby
    7 : keyword.control.js
    7 : support.constant.property-value
    6 : meta.brace.square.coffee
    6 : sublimelinter.annotations
    6 : markup.heading.markdown
    6 : entity.name.section.markdown
    6 : meta.brace.round
    6 : meta.delimiter.method.period.coffee
    6 : entity.name.class.variant
    6 : keyword.other
    6 : punctuation.definition.italic.markdown
    6 : punctuation.definition.tag.begin.html
    6 : entity.other.attribute-name.angular.html
    6 : meta.brace.round.coffee
    6 : string.unquoted.heredoc
    6 : punctuation.definition.parameters.begin.js
    6 : punctuation.separator.key-value.css
    6 : source.css.less keyword.unit.css
    6 : entity.other
    6 : punctuation.definition.tag.end.html
    6 : punctuation.definition.bold.markdown
    6 : source.diff
    6 : source string source punctuation.section.embedded
    6 : variable.other.readwrite.instance.coffee
    6 : support.class.ruby
    6 : markup.inserted.git_gutter
    6 : punctuation.definition.metadata.markdown
    6 : punctuation.section.property-list.css
    6 : markup.changed.git_gutter
    6 : markup.deleted.git_gutter
    6 : constant.numeric.ruby
    6 : punctuation.section.embedded.coffee
    6 : source.angular.embedded.html
    6 : meta.separator.markdown
    6 : entity.other.attribute-name.id.html
    6 : keyword.other.directive
    6 : punctuation.section.embedded.ruby
    6 : entity.name.preprocessor
    6 : string.regexp.group
    6 : entity.name.tag.style.html
    6 : variable.assignment.coffee variable.assignment.coffee
    6 : keyword.other.new
    6 : constant.other.general.math.tex
    6 : meta.brace.curly.coffee
    6 : punctuation.definition.parameters.end.js
    6 : variable.other.php
    6 : string.other.math.tex
    6 : keyword.other.DML.sql
    5 : text.html.basic meta.tag.other.html
    5 : source.php.embedded.line.html
    5 : support.constant.color
    5 : meta.property-value.css constant.numeric.css
    5 : meta.tag.inline.any.html
    5 : meta.function-call.object
    5 : punctuation.separator.key-value.html
    5 : brackethighlighter.curly
    5 : string.other.link.description.markdown
    5 : source.ruby.embedded.source
    5 : source.ruby
    5 : entity.name.type.module
    5 : entity.name.tag.block.any.html
    5 : markup.ignored.git_gutter
    5 : meta.property-name
    5 : punctuation.definition.string.end.html
    5 : text.html.basic meta.tag.block.any
    5 : entity.name.tag.doctype.html
    5 : source.shell
    5 : variable.other.constant.ruby
    5 : source.ocaml constant.numeric.floating-point
    5 : other.preprocessor
    5 : text.html.basic meta.tag.any.html
    5 : markup.untracked.git_gutter
    5 : entity.name.type.class.ruby
    5 : invalid.trailing-whitespace
    5 : meta.brace.square.js
    5 : constant.other.rgb-value.css
    5 : meta.link.inline.markdown
    5 : source.css.embedded.html
    5 : text.html.basic meta.tag.structure.any.html
    5 : keyword.operator.logical
    5 : meta.doctype.DTD
    5 : text.html.basic meta.tag.inline.any
    5 : variable.js
    5 : markup.italic.markdown
    5 : punctuation.definition.list
    5 : support.type.property-name
    5 : keyword.control.html.elements
    5 : keyword.other.directive.line-number
    5 : brackethighlighter.tag
    4 : source.diff markup.deleted.diff punctuation.definition.inserted.diff
    4 : variable.other.property.php
    4 : brackethighlighter.angle
    4 : source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json
    4 : keyword.control.at-rule
    4 : entity.name.type
    4 : punctuation.definition.raw.restructuredtext
    4 : string.quoted.single.js
    4 : source.css.embedded punctuation.definition.tag.html
    4 : support.function.builtin.shell
    4 : text.html.basic punctuation.section.property-list.css
    4 : storage.modifier.import.java
    4 : source.css.embedded.html entity.name.tag.style.html
    4 : meta.tag.sgml-declaration.doctype
    4 : source.diff meta.diff.header
    4 : string.quoted.double.block.python
    4 : string.quoted.double.php
    4 : source.json meta.structure.dictionary.json meta.structure.array.json string.quoted.double.json
    4 : punctuation.definition.string.begin.php
    4 : meta.tag string -source -punctuation
    4 : entity.other.attribute-name.pseudo-class
    4 : source.json meta.structure.dictionary.value.json string.quoted.double.json
    4 : source.ocaml keyword.operator.symbol.prefix
    4 : markup.bold.markdown
    4 : constant.other.reference.link
    4 : keyword.type.variant
    4 : support.class.exception
    4 : string.other.link.title.markdown
    4 : storage.type.function.php
    4 : punctuation.definition.string.end.php
    4 : variable.other.global.safer.php
    4 : variable.language.fenced.markdown
    4 : keyword.control.import.from.python
    4 : source.php.embedded.block.html
    4 : markup.heading punctuation.definition
    4 : block_cursor
    4 : entity.name.function.predicate
    4 : entity.name.structure
    4 : brackethighlighter.round
    4 : source.json meta.structure.dictionary.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - source.json meta.structure.dictionary.json meta.structure.array.json meta.structure.dictionary.value.json string.quoted.double.json
    4 : source.ocaml keyword.operator.symbol.infix
    4 : punctuation.separator.continuation
    4 : punctuation.definition.string.end.shell
    4 : meta.raw.block.restructuredtext
    4 : entity.name.tag.style
    4 : source.diff markup.changed.diff
    4 : source.css.embedded.html string.quoted.double.html
    4 : meta.tag.inline source
    4 : other.add
    4 : source.diff markup.inserted.diff punctuation.definition.inserted.diff
    4 : punctuation.definition.string.end.ruby
    4 : source.diff meta.diff.range.unified punctuation.definition.range.diff
    4 : comment.line.number-sign.shell
    4 : source.diff markup.deleted.diff
    4 : meta.function.js
    4 : brackethighlighter.quote
    4 : meta.tag.block.script
    4 : text.html.basic entity.other.attribute-name.html
    4 : entity.name.function.ruby
    4 : meta.scope.case-body.shell
    4 : storage.modifier.global.python
    4 : meta.tag.other
    4 : source.js.embedded punctuation.definition.tag.html
    4 : variable.parameter.misc.css
    4 : variable.other.loop.shell
    4 : variable.other.normal.shell
    4 : entity.name.type.class.type
    4 : entity.name.function.io
    4 : source.diff markup.inserted.diff
    4 : brackethighlighter.square
    4 : source.js
    4 : meta.scope.for-in-loop.shell
    4 : keyword.operator.class.php
    4 : string.quoted.single.php
    4 : text.html.php.source
    4 : punctuation.definition.logical-expression.shell
    4 : other.package.exclude
    4 : constant.numeric.js
    4 : string.quoted.double.xml
    4 : constant.other.database-name.sql
    4 : punctuation.definition.string.end.html
    4 : source.plist string.unquoted
    4 : text.restructuredtext markup.raw
    4 : meta.tag punctuation.definition.string
    4 : meta.preprocessor.c.include
    4 : source.diff meta.diff.range.unified
    4 : meta.scope.case-block.shell
    4 : punctuation.definition.string.begin.shell
    4 : text source text meta.tag string -punctuation
    4 : meta.attribute-selector.css string
    4 : constant.language.boolean
    4 : source.diff markup.changed.diff punctuation.definition.inserted.diff
    4 : variable.other.normal
    4 : source.plist keyword.operator
    4 : string.quoted.double.doctype.identifiers-and-DTDs.html
    4 : other.remove
    4 : support.function.dom.js
    4 : source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json string.quoted.double.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json
    4 : entity.name.function.misc
    4 : markup.heading.2.markdown
    4 : support.function.activerecord.rails
    4 : markup.underline.link.markdown
    4 : variable.other.external-symbol
    4 : meta.structure.dictionary.value.json string.quoted.double.json
    4 : keyword.control.import.python
    4 : meta.toc-list.id
    4 : markup.heading.1.markdown
    4 : text.html.basic meta.tag.structure.any.html punctuation.definition.string.begin.html
    4 : entity.name.module
    4 : support.constant.font-name.css
    4 : keyword.control.def.ruby
    4 : punctuation.definition.string.begin.ruby
    4 : entity.name.tag.script
    4 : source.json meta.structure.dictionary.json string.quoted.double.json
    3 : keyword.operator.index-end.php
    3 : support.function.general.tex
    3 : keyword.control.class.ruby
    3 : meta.class.java storage.modifier.java
    3 : entity.other.attribute-name.tag.pseudo-class
    3 : entity.other.attribute-name.class.sass
    3 : punctuation.definition.string.end.json - meta.structure.dictionary.value.json
    3 : support.class.php
    3 : source.css variable.parameter
    3 : variable.other.predefined.perl
    3 : entity.name.function.preprocessor.c
    3 : punctuation.definition.array.end
    3 : storage.modifier.extends.php
    3 : source.js.embedded.html
    3 : string.other.link.description.title.markdown
    3 : punctuation.definition.string.begin.tex
    3 : support.function.any-method.c
    3 : meta.function-call.static.php
    3 : variable.parameter.function.latex
    3 : markup.heading | markup.heading entity.name
    3 : storage.type.user-defined
    3 : meta.group.braces.tex
    3 : text.tex.latex constant.other.math.tex
    3 : punctuation.definition.constant.math.tex
    3 : entity.name.function.c
    3 : support.constant.core
    3 : punctuation.definition.variable.perl
    3 : text.tex.latex support.function
    3 : entity.other.attribute-name.pseudo-element
    3 : variable.parameter.definition.label.latex
    3 : support.other
    3 : meta.function-call.arguments
    3 : entity.name.tag.localname.xml
    3 : object.property.function.prototype.js
    3 : punctuation.definition.arguments.begin.latex
    3 : keyword.other.unit.scss
    3 : storage.type.php
    3 : keyword.control.ref.latex
    3 : meta.tag.sgml.doctype.html
    3 : punctuation.definition.arguments.end.latex
    3 : source source
    3 : entity.name.tag.class.haml
    3 : meta.preprocessor.c.include punctuation.definition.string.begin.c
    3 : storage.type.class.php
    3 : meta.array.empty.php support.function.construct.php
    3 : string.quoted.double.js
    3 : constant.language.ruby
    3 : keyword.operator.index-start.php
    3 : string.regexp constant
    3 : string.unquoted.heredoc string
    3 : punctuation.definition.string.end.c
    3 : constant.numeric.c
    3 : keyword.other.phpdoc.php
    3 : punctuation.definition.string.begin.json - meta.structure.dictionary.value.json
    3 : constant.other.php
    3 : punctuation.terminator.expression.php
    3 : text.html.ruby punctuation.definition.string.end
    3 : storage.type.class.python
    3 : punctuation.separator
    3 : meta.preprocessor.macro.c
    3 : keyword.preprocessor directive
    3 : keyword.control.import.include.php
    3 : markup.heading.markdown string.other.link
    3 : storage.type.function.python
    3 : punctuation.separator.key-value
    3 : support.function.section.latex
    3 : support.function.C99.c
    3 : text.tex.latex meta.function.environment
    3 : support.function.event-handler.js
    3 : support.type.exception.python
    3 : meta.array.php support.function.construct.php
    3 : constant.character.escape.perl
    3 : punctuation.section.function.css
    3 : punctuation.definition.arguments.latex
    3 : punctuation.definition.string.begin.c
    3 : keyword.other.import.java
    3 : meta.array.php
    3 : meta.tag string.quoted
    3 : meta.property-value
    3 : meta.function-call.php
    3 : keyword.preprocessor
    3 : support.class.prototype.js
    3 : text.html.ruby punctuation.definition.string.begin
    3 : keyword.other.new.php
    3 : meta.other.inherited-class.php
    3 : source.ruby.rails.embedded.html
    3 : variable.parameter.sass
    3 : keyword.control.import.include.c
    3 : meta.function.method.with-arguments.ruby
    3 : punctuation.definition.link.markdown
    3 : keyword.control.untitled
    3 : keyword.control.import.define.c
    3 : meta.preprocessor.c.include string.quoted.other.lt-gt.include.c
    3 : string punctuation
    3 : constant.numeric.php
    3 : string.other.link.title.markdown
    3 : comment.block meta.documentation.tag.param.javadoc keyword.other.documentation.param.javadoc
    3 : keyword.control.at-rule.sass
    3 : constant.other.color.rgb-value.scss
    3 : punctuation.section.group.tex
    3 : punctuation.definition.string.end.perl
    3 : string -string.unquoted.old-plist -string.unquoted.heredoc
    3 : punctuation.definition.string.end.tex
    3 : text.tex.latex meta.function.environment meta.function.environment
    3 : support.function.perl
    3 : punctuation.definition.variable.ruby
    3 : source.ocaml keyword.operator.symbol
    3 : entity.name.function.php
    3 : keyword.operator.assignment
    3 : keyword.operator.comparison.perl
    3 : meta.preprocessor.c.include punctuation.definition.string.end.c
    3 : punctuation.definition.comment.tex
    3 : meta.tag.block.any.html
    3 : storage.type.function
    3 : comment.line.percentage.tex
    3 : entity.other.attribute-name.id.sass
    3 : constant.other.unit.sass
    3 : keyword.control.label.latex
    3 : entity.name.tag.id.haml
    3 : comment.line.number-sign.perl
    3 : support.function.be.latex
    3 : markup.raw.block
    3 : meta.brace
    3 : storage.type.c
    3 : constant.character.math.tex
    3 : text.html.ruby meta.tag.inline.any.html
    3 : meta.class.ruby
    3 : entity.name.tag.doctype
    3 : punctuation.definition.array.begin
    3 : punctuation.section.array
    3 : variable.other.readwrite.global.perl
    3 : text.tex.latex constant.other.general.math.tex
    3 : source.java comment.block
    3 : support.function.misc.css
    3 : text.html
    3 : support.type.property-name.sass
    3 : meta.tag.structure.any.html
    3 : punctuation.definition.string.begin.perl
    3 : entity.name.type.class.php
    3 : text.xml
    2 : markup.bold.restructuredtext
    2 : variable.scss
    2 : punctuation.definition.string.restructuredtext
    2 : meta.group.braces.square punctuation.section.scope
    2 : entity.name.type.class
    2 : variable.other.twig
    2 : keyword.operator.star
    2 : meta.tag.sgml
    2 : meta.link.reference.def.restructuredtext string.other.link.title.restructuredtext
    2 : markup.table
    2 : source.scss variable.parameter
    2 : source.php.embedded
    2 : source.js.embedded
    2 : punctuation.definition.field.restructuredtext
    2 : text.html.ruby source.ruby.rails.embedded.html variable.other.readwrite.instance.ruby
    2 : storage.modifier.java
    2 : entity.other.attribute-name.class.css
    2 : punctuation.section
    2 : markup.output
    2 : string.interpolation
    2 : meta.function-call.python - punctuation - meta.function-call.arguments.python
    2 : support.constant.std.php
    2 : comment.block.preprocessor
    2 : meta.selector.css
    2 : meta.selector.css entity.other.attribute-name.pseudo-element.css
    2 : meta.group.braces.square meta.delimiter.object.comma
    2 : markup.list.numbered.markdown
    2 : sublimelinter.notes
    2 : punctuation.definition.constant.css
    2 : meta.function-name
    2 : keyword.control.twig
    2 : support.constant.property-value.css.sass variable
    2 : string.quoted
    2 : declaration.tag.entity
    2 : meta.link.inline.restructuredtext string.other.link.title.restructuredtext
    2 : meta.property-list
    2 : punctuation.definition.location.restructuredtext
    2 : markup.traceback
    2 : punctuation.terminator.statement.js
    2 : storage.modifier.js
    2 : meta.group.braces.round meta.delimiter.object.comma
    2 : entity.name.exception
    2 : punctuation.definition.fenced.markdown
    2 : storage.modifier.implements
    2 : string.quoted.single.xml
    2 : meta.selector entity
    2 : source.scss comment.punctuation
    2 : meta.tag.entity
    2 : meta.function.section
    2 : storage.modifier
    2 : declaration.class
    2 : variable punctuation
    2 : keyword.other.create.sql
    2 : string punctuation.section.embedded.ruby
    2 : punctuation.definition.tag.begin.xml
    2 : meta.other.directive.restructuredtext
    2 : constant.numeric.floating-point
    2 : markup.other.command.restructuredtext
    2 : punctuation.separator.key-value.yaml
    2 : string source - string.unquoted.embedded
    2 : meta.raw.block.restructuredtext meta.raw.block.restructuredtext
    2 : keyword.operator
    2 : constant.other.table-name.sql
    2 : keyword.name.ini
    2 : meta.tag string punctuation
    2 : keyword.control
    2 : keyword.doctype.xml
    2 : git.changes.-
    2 : git.changes.+
    2 : string.regexp.arbitrary-repitition
    2 : meta.property-value keyword
    2 : git.changes.x
    2 : storage.type.user-defined
    2 : punctuation.definition.string.markdown
    2 : string.quoted.double.include
    2 : text.html.markdown
    2 : markup.raw.restructuredtext
    2 : punctuation.definition.directive.restructuredtext
    2 : string source.ruby.embedded.source
    2 : meta.brace.square
    2 : punctuation.definition.constant.end.markdown
    2 : comment.documentation
    2 : invalid.bad-comma.css
    2 : brackethighlighter.default
    2 : entity.name.type.class.java
    2 : entity.name.tag.restructuredtext
    2 : punctuation.definition.intepreted.restructuredtext
    2 : entity.name.type.instance.js
    2 : sublimelinter.mark.warning
    2 : meta.selector.css entity.other.attribute-name.pseudo-class.css
    2 : meta.attribute.smarty
    2 : markup.error
    2 : keyword.markup.attribute-name
    2 : keyword.other.name-of-parameter
    2 : keyword.other.data-integrity.sql
    2 : entity.name.tag.yaml
    2 : punctuation.separator.array
    2 : keyword - keyword.operator
    2 : storage.modifier.extends
    2 : entity.name.function.decorator
    2 : storage.type
    2 : punctuation.definition.arbitrary-repitition
    2 : variable.other.global.php
    2 : punctuation.definition.heading.markdown
    2 : meta.link.reference string.other.link.title.restructuredtext - punctuation.definition.italic
    2 : punctuation.separator.inheritance.php
    2 : support.function.misc.scss
    2 : meta.property-value constant.numeric
    2 : source.php
    2 : string string source
    2 : support.constant.property-value.sass
    2 : entity.name.function.frame
    2 : support.other.namespace
    2 : keyword.other.include.php
    2 : string.regexp.classic.ruby punctuation.definition.string.ruby
    2 : markup.underline.link.image.markdown
    2 : punctuation.definition.constant.markdown
    2 : string.quoted.other.js
    2 : meta.selector entity punctuation
    2 : support.constant.js
    2 : constant.other.rgb-value.sass
    2 : keyword.operator.comparison
    2 : storage.type.sql
    2 : storage.type.primitive.array.java
    2 : string.quoted.other.lt-gt.include
    2 : source.diff meta.toc-list.comment.diff
    2 : meta.group.braces.round punctuation.section.scope
    2 : sublimelinter.gutter-mark
    2 : support.constant.font-name
    2 : markup.italic.restructuredtext
    2 : string.unquoted.embedded
    2 : punctuation.definition.constant.begin.markdown
    2 : support.constant.core.php
    2 : meta.diff.range.unified
    2 : meta.link.inline.restructuredtext markup.underline.link.restructuredtext
    2 : markup.heading.markdown punctuation.definition.heading.markdown
    2 : markup.list.unnumbered.markdown
    2 : punctuation.definition.tag.end.xml
    2 : keyword.other.default.scss
    2 : punctuation - (punctuation.definition.string | punctuation.definition.comment)
    2 : source.sass support.constant
    2 : constant.js
    2 : meta.property-value.css support.constant
    2 : source.css.embedded
    2 : text.html.ruby source.ruby.rails.embedded.html punctuation.section.embedded.ruby
    2 : meta.paragraph.markdown string.other.link
    2 : markup.raw.restructuredtext - meta.raw.block.restructuredtext
    2 : brackethighlighter.unmatched
    2 : support.other.module
    2 : keyword.other.using.source.cs
    2 : entity.name.tag.xml
    2 : keyword.operator.dereference.java
    2 : support.other.module
    2 : source.sass variable.parameter
    2 : source.sql
    2 : source.python keyword.operator.assignment.python
    2 : meta.brace.round.js
    2 : storage.modifier.sql
    2 : invalid.violation
    2 : source.ruby.embedded.source punctuation.section.embedded.ruby
    2 : punctuation.definition.heading.restructuredtext
    2 : deco.folding
    2 : meta.tag string.quoted constant.character.entity
    2 : entity.name.type.class-type
    2 : punctuation.definition.entry
    2 : invalid.warning
    2 : declaration.function
    2 : punctuation.separator.key-value.restructuredtext
    2 : markup.prompt
    2 : source.css support.function
    2 : constant.numeric.line-number.match.find-in-files
    2 : meta.property-list.css meta.property-name.css
    2 : source.js entity.name.tag
    2 : meta.delimiter
    2 : source.diff meta.diff.comment
    2 : string source.ruby.embedded.source punctuation.section.function.ruby
    2 : sublimelinter.mark.error
    2 : support.function.name.sass
    2 : punctuation.definition.character-class
    2 : keyword.storage.php
    2 : markup.link
    2 : meta.paragraph.list.markdown string.other.link
    2 : comment.block.documentation
    2 : meta.property-value.scss support.constant
    2 : markup.raw.block.fenced.markdown
    2 : meta.function-call.static
    2 : comment punctuation
    1 : cc0xa9
    1 : support.ipython.in
    1 : source.python keyword.other.python
    1 : string.quoted.single.sql
    1 : support.function.twig
    1 : support.other.namespace.use-as.php
    1 : support.function.filter.twig
    1 : support.constant.name.tm-language-def
    1 : variable.parameter.function.language
    1 : meta.selector.jquery
    1 : keyword.operator.string.php
    1 : source.less entity.other.attribute-name.id
    1 : meta.tag.preprocessor.xml punctuation.definition.tag.xml
    1 : entity.name.method
    1 : source.scss support.function.misc
    1 : support.constant.actionscript.2
    1 : meta.property-list.scss
    1 : meta.documentation.tag.param.asdoc
    1 : punctuation.separator.annotation.result.python
    1 : meta.method-call
    1 : meta.property-value.css support.constant.font-name.css
    1 : comment.other.server-side-include.html
    1 : markup.list.unnumbered.textile
    1 : cc0x1c
    1 : cc0x1b
    1 : cc0x1a
    1 : punctuation.definition.array.end.php
    1 : cc0x1f
    1 : cc0x1e
    1 : cc0x1d
    1 : constant.character.escape.html
    1 : meta.method.declaration
    1 : meta.tag string.quotedxx
    1 : support.function.any-method.builtin.css
    1 : cc0x13
    1 : cc0x11
    1 : cc0x17
    1 : cc0x16
    1 : cc0x15
    1 : cc0x14
    1 : cc0x19
    1 : meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : constant.numeric.integer.int32
    1 : entity.name.type.html
    1 : source.python meta.function.decorator.python entity.name.function.decorator.python
    1 : constant.language.html
    1 : meta meta meta meta meta.structure.dictionary string
    1 : markup.heading punctuation
    1 : variable.parameter.ee
    1 : override.rubyBlockPairOccurrenceIndication
    1 : declaration.class class-name
    1 : punctuation.section.embedded.begin.asp
    1 : storage.type.function source.clojure
    1 : punctuation.definition.heading
    1 : constant.numeric.floating-point.ocaml
    1 : source.shell string.quoted.double.shell
    1 : mcol_00ffffFF
    1 : declaration.section section-name
    1 : meta meta.structure.dictionary string
    1 : text.html.django string.unquoted.tag-string
    1 : keyword.other.documentation.since.javadoc
    1 : support.function.builtin
    1 : punctuation.definition.tag
    1 : sublimelint.illegal
    1 : meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : meta meta.structure.dictionary.value string
    1 : meta meta meta meta meta meta meta.structure.dictionary string
    1 : meta.property-list.scss meta.property-value.scss
    1 : mcol_0000ffFF
    1 : punctuation.definition.constant
    1 : meta.property-value.css constant.other.color.rgb-value.css
    1 : text.html meta.tag
    1 : source.css keyword.operator
    1 : comment.block.sass
    1 : meta.link.inline.textile
    1 : text.xml meta.tag.preprocessor.xml entity.name.tag.xml
    1 : source.python keyword.operator
    1 : variable.other.jinja
    1 : entity.other.tagbraces.twig
    1 : string.quoted.double.doctype
    1 : cc0x2c
    1 : meta.property-name.scss
    1 : cc0xfc
    1 : string - meta.embedded
    1 : string meta.embedded
    1 : override.pydevOccurrenceIndication
    1 : punctuation.whitespace.comment
    1 : keyword.tag
    1 : support.type.function.global
    1 : support.class.dom
    1 : comment.line
    1 : markup.list punctuation.definition.list_item
    1 : punctuation.definition.decorator
    1 : entity.other.attribute-name.user.ee
    1 : keyword.other.default
    1 : keyword.operator.prefix.floating-point.ocaml
    1 : cc0xca
    1 : variable.other.jinja.filter
    1 : meta.tag.sgml.doctype keyword
    1 : keyword.css
    1 : storage.type.templatetag.django entity.tag.tagbraces.django
    1 : storage.type.namespace
    1 : meta.function-call punctuation.definition.parameters
    1 : storage.type.module
    1 : variable.other.block
    1 : constant.other.reference.link.markdown
    1 : keyword.operator.assignment.jsp
    1 : constant.language.boolean.false.js
    1 : keyword.operator -keyword.operator.dereference
    1 : override.xmlTagPairOccurrenceIndication
    1 : constant.numeric.line-number.todo-list
    1 : string.other.link.markdown
    1 : text source.ruby
    1 : text.html.basic entity.name.tag
    1 : variable.other.readwrite.instance.ruby
    1 : constant.string.symbole.clojure
    1 : comment.line.todo.php
    1 : meta.embedded.line
    1 : cc0xc0
    1 : text.tex.latex entity
    1 : property
    1 : meta.structure.dictionary meta.structure.dictionary.key
    1 : keyword.command
    1 : cc0xf6
    1 : cc0xf7
    1 : cc0xf4
    1 : cc0xf5
    1 : cc0xf2
    1 : cc0xf3
    1 : cc0xf0
    1 : cc0xf1
    1 : storage.modifier.extends.java
    1 : source.python meta.function-call.pythonsource.python meta.function-call.pythonsource.python meta.function-call.python support.type.python
    1 : cc0xf8
    1 : cc0xf9
    1 : cc0x12
    1 : source.js support
    1 : cc0x10
    1 : cc0xff
    1 : cc0xfd
    1 : cc0xfe
    1 : cc0xfb
    1 : cc0xfa
    1 : keyword.other.documentation.custom.javadoc
    1 : source.sass
    1 : Markdown.heading
    1 : punctuation.section.embedded.end.asp
    1 : source.python keyword.control.import.from.python
    1 : variable.other.readwrite.global
    1 : constant.numeric.key
    1 : constant.language.null
    1 : keyword.other.regex.sass
    1 : meta.property-value punctuation.separator.key-value
    1 : variable.other.readwrite.instance
    1 : support.type.dom
    1 : meta.xml-processing.html
    1 : entity.other.attribute-name.js
    1 : remark.info
    1 : *uri*
    1 : source.python punctuation.definition.dictionary
    1 : source.js entity.other
    1 : console.warning
    1 : support.type.class.python
    1 : source.python meta.class.python punctuation.definition.inheritance.begin.python
    1 : variable.other.readwrite.instance punctuation.definition.variable
    1 : keyword.control.filter.django
    1 : string - string source
    1 : meta.section meta.section
    1 : support.constant.named-color.css
    1 : meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : meta.method-return.actionscript.3
    1 : entity.name.tag.scss
    1 : string.quoted.single.block.python
    1 : ee.tag.html
    1 : text.html.basic meta.tag
    1 : source.python meta.class.python entity.name.type.class.python
    1 : entity.name.function.actionscript
    1 : flow.enclose.round
    1 : source.css meta.selector.css meta.attribute-selector.css
    1 : cc0x49
    1 : storage.type.variable entity.tag.tagbraces.django
    1 : source.scss keyword.control.at-rule
    1 : meta.constructor.argument
    1 : meta.variable-usage.sass
    1 : source.scss
    1 : punctuation.definition.end
    1 : comment.other.server-side-include.xhtml
    1 : source.python meta.function.python meta.function.parameters.python variable.parameter.function.python
    1 : diff.deleted
    1 : variable.other.class
    1 : flow.enclose.parameter
    1 : entity.name.function.abp
    1 : comment.line.region
    1 : text.html declaration.tag
    1 : storage.clojure
    1 : meta.hash.twig
    1 : string.quoted.double.css
    1 : entity.other.attribute-name.predefined.ee
    1 : source.js punctuation.definition.tag
    1 : storage.type.regexp.group
    1 : source.python meta.function-call.python meta.function-call.arguments.python
    1 : string.quoted.single.block
    1 : source.yaml-tmlanguage keyword.other.name
    1 : source.css meta.attribute-selector keyword.operator.comparison
    1 : cc0x5f
    1 : constant.numeric.integer.int64
    1 : meta.use.php
    1 : meta.function.decorator support.type
    1 : text.html.markdown markup.raw.inline punctuation.definition.raw.markdown
    1 : constant.character.escape.xml
    1 : declaration.function function-argument
    1 : declaration.function function-name
    1 : source.css support
    1 : source.python support.other.django.module
    1 : declaration.function function-result
    1 : support.constant.dom.js
    1 : keyword.operator.new.js
    1 : markdown.heading
    1 : punctuation.section.property-list.end.scss
    1 : source.js keyword.operator.js
    1 : keyword.operator.increment-decrement.java
    1 : Markdown.deleted
    1 : entity.name.type.module-type.ocaml
    1 : text.plain
    1 : text.html.basic entity.other.attribute-name
    1 : source.scss entity.name.tag.reference.css
    1 : markup.list.numbered.textile
    1 : remark.exception
    1 : puctuation
    1 : entity.name.type.textile
    1 : punctuation.definition - comment - constant
    1 : python punctuation.definition.list
    1 : constant.language.js
    1 : keyword.other.documentation.serialField.javadoc
    1 : cc0x8c
    1 : punctuation.delimiter.method
    1 : cc0xd0
    1 : cc0xd1
    1 : cc0xd2
    1 : cc0xd3
    1 : cc0xd4
    1 : cc0xd5
    1 : cc0xd6
    1 : cc0xd7
    1 : cc0xd8
    1 : cc0xd9
    1 : comment.line.marker.php
    1 : source.clojure constant.other
    1 : meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : cc0xda
    1 : cc0xdb
    1 : cc0xdc
    1 : cc0xdd
    1 : cc0xde
    1 : keyword.doctype
    1 : keyword.control.at-rule.mixin.scss
    1 : string.quoted.double.twig
    1 : cc0xe5
    1 : entity.name.tag.html
    1 : cc0xe2
    1 : source.css entity.other.attribute-name.id
    1 : keyword.other.function.use
    1 : markup.changed.diff
    1 : cc0xe0
    1 : comment.punctuation.semicolon.sass
    1 : cc0x18
    1 : string.regexp.character-class.php
    1 : punctuation.separator.other
    1 : text source function
    1 : keyword.operator.assignment.augmented
    1 : entity.name.function.java
    1 : remark.wait
    1 : markup.quote markup.quote
    1 : source.less entity.other.attribute-name.class
    1 : meta.structure.dictionary.value
    1 : meta.scope.changed-files.svn
    1 : meta.namespace
    1 : punctuation.section.function
    1 : keyword.operator.setter
    1 : punctuation.definition.range.diff
    1 : punctuation.definition.string.xml
    1 : constant.other.color.rgb-value.css punctuation.definition.constant.css
    1 : support.function.any-method - punctuation
    1 : punctuation.definition.map
    1 : support.function.js.jquery
    1 : meta.embedded.block
    1 : string.quoted.double.ruby source.ruby.embedded.source
    1 : source.python meta.class.old-style.python entity.name.type.class.python
    1 : cc0x87
    1 : cc0x81
    1 : entity.other.argument.twig
    1 : flow.enclose.doublequote
    1 : meta.tag.block.any.html
    1 : Markdown.changed
    1 : markup.changed.svn
    1 : keyword.other.documentation.throws.javadoc
    1 : keyword.other.documentation.version.javadoc
    1 : source.python keyword.operator.arithmetic.python
    1 : cc0xef
    1 : cc0xee
    1 : cc0xed
    1 : cc0xec
    1 : cc0xeb
    1 : cc0xea
    1 : storage.type.generic.source.cs
    1 : cc0xe9
    1 : cc0xe8
    1 : cc0xe7
    1 : cc0xe6
    1 : cc0xe4
    1 : cc0xe3
    1 : cc0x64
    1 : cc0xe1
    1 : variable.other.ee
    1 : meta.set.variable
    1 : punctuation.definition.prolog.haml
    1 : variable.documentroot
    1 : support.function.magic.python
    1 : meta meta meta meta.structure.dictionary string
    1 : keyword.other.documentation.serialData.javadoc
    1 : meta.other.inherited-class support.class.builtin
    1 : keyword.operator.assignment.java
    1 : meta.property-list.css entity.name.tag.reference.css
    1 : cc0x68
    1 : support.operator.quantifier
    1 : support.function.magic
    1 : mcol_ffa500FF
    1 : source.scss entity.other.attribute-name.id
    1 : keyword.other.js
    1 : storage.type.annotation.java
    1 : comment.block.documentation.phpdoc
    1 : meta.function entity.name.function
    1 : text.plain meta.hash
    1 : source.js keyword.operator
    1 : support.property
    1 : constant.character.entity.html punctuation
    1 : constant.language.python
    1 : punctuation.section.tag.twig
    1 : support.constant.ee
    1 : punctuation.definition.vector
    1 : storage.type.source.cs
    1 : support.function.misc
    1 : meta.tag.template.value.twig
    1 : support.function.filter.variable.twig
    1 : keyword.other.name.sublime-settings
    1 : meta.section meta.section meta.section
    1 : constant.numeric.java
    1 : support.variable.magic.python
    1 : support.function.addon.ee
    1 : meta.tag.haml
    1 : punctuation.definition.parameters-group.end.python
    1 : cc0x33
    1 : entity.function.addon.ee
    1 : markup.todo
    1 : remark.todo
    1 : entity.name.function.decorator support.type
    1 : cc0x6b
    1 : meta.function.section entity.name.section
    1 : source.js string.quoted
    1 : entity.other.attribute-name.universal
    1 : source.python keyword.control.import.python
    1 : support.constant.css
    1 : meta.tag.no-content
    1 : highlight_matching_word
    1 : markup
    1 : sublimelinter.warning
    1 : source.python punctuation.definition.arguments
    1 : meta.property-value.css constant.other.color.rgb-value.css punctuation.definition.constant.css
    1 : meta meta meta meta.structure.dictionary.value string
    1 : entity.name.tag.inline.any.html
    1 : constant.other.placeholder.py
    1 : meta.property-value.scss constant.numeric.scss
    1 : keyword.reserved.js
    1 : source.css meta.property-list.css meta.property-name.css support.type.property-name.css
    1 : meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : constant.numeric.item-number.todo-list
    1 : entity.name.type.xml
    1 : keyword.other.DML
    1 : support.other.namespace.php
    1 : cc0xb8
    1 : cc0xb2
    1 : cc0xb3
    1 : cc0xb0
    1 : cc0xb1
    1 : cc0xb6
    1 : cc0xb7
    1 : cc0xb4
    1 : cc0xb5
    1 : punctuation.definition.tag.xml
    1 : markup.bold.textile
    1 : console.prompt
    1 : keyword.other.use
    1 : support.function.activesupport.rails
    1 : remark.fixme
    1 : entity.name.tag.wildcard
    1 : variable.other.object
    1 : storage.type.primitive.java
    1 : cc0xbb
    1 : cc0xbc
    1 : cc0xba
    1 : cc0xbf
    1 : text.plain meta.paragraph.text markup.underline.link.text
    1 : cc0xbd
    1 : comment.line.note.python
    1 : markup.other
    1 : source.python meta.function.python entity.name.function.python
    1 : Operators
    1 : meta.method.return-type.source.cs
    1 : constant.other.object.key string
    1 : text.html source
    1 : embedded
    1 : meta.link.inline markup.underline
    1 : comment.line.note.notation.python
    1 : support.type.python
    1 : support.class.implements
    1 : punctuation.definition.string.html
    1 : variable.other.django.settings
    1 : entity.other.attribute-name.attribute.css
    1 : entity.name.tag.structure.any.html
    1 : constant.other.name.xml
    1 : cc0x34
    1 : keyword.other.class
    1 : comment.punctuation.comma.sass
    1 : meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : source.ruby entity.name
    1 : keyword.operator.comparison.php
    1 : keyword.other.important.scss
    1 : sublimelinter.underline
    1 : console.error
    1 : meta.link.inline
    1 : source.css meta.selector.css meta.attribute-selector.css punctuation.definition.entity.css
    1 : punctuation.definition.set
    1 : cc0xcc
    1 : cc0xcb
    1 : cc0xce
    1 : cc0xcd
    1 : cc0xcf
    1 : cc0xc9
    1 : cc0xc8
    1 : cc0xc1
    1 : cc0xc3
    1 : cc0xc2
    1 : cc0xc5
    1 : cc0xc4
    1 : cc0xc7
    1 : cc0xc6
    1 : keyword.exception
    1 : meta.selector entity.name.tag
    1 : string.quoted.single.twig
    1 : keyword.other.documentation.author.javadoc
    1 : meta meta meta meta meta meta.structure.dictionary.value string
    1 : *link*
    1 : meta meta meta meta meta meta meta.structure.dictionary.value string
    1 : source.yaml-tmlanguage support.type
    1 : source.python keyword.control.flow.python
    1 : entity.name.type.module.ruby
    1 : punctuation.separator.inheritance
    1 : cc0x8d
    1 : cc0x8e
    1 : cc0x8f
    1 : cc0x8a
    1 : cc0x8b
    1 : meta.tag.template.block.twig
    1 : meta.attribute-with-value.id.html
    1 : punctuation.definition.string.php
    1 : *url*
    1 : source.python meta.function.python storage.type.function.python
    1 : support.function.clojure
    1 : cc0x88
    1 : cc0x89
    1 : cc0x84
    1 : cc0x85
    1 : cc0x86
    1 : meta meta meta meta meta meta.structure.dictionary string
    1 : cc0x80
    1 : cc0x82
    1 : cc0x83
    1 : constant.other.adb.timestamp
    1 : cc0x66
    1 : cc0x67
    1 : cc0x65
    1 : cc0x62
    1 : cc0x63
    1 : cc0x60
    1 : cc0x61
    1 : source.shell string.interpolated.backtick.shell
    1 : cc0x69
    1 : entity.name.filename.todo-list
    1 : text.html entity.name.tag.xhtml
    1 : constant.other.symbol.ruby.19syntax
    1 : cc0x6f
    1 : cc0x6d
    1 : cc0x6e
    1 : entity.other.control
    1 : cc0x6c
    1 : cc0x6a
    1 : keyword.other.modifiers
    1 : storage.modifier.implements.java
    1 : meta.delimiter.method.period.js
    1 : entity.name.type.token.reference
    1 : constant.other.symbol punctuation.definition.constant
    1 : support.function.less
    1 : constant.language.null.js
    1 : sublimelint.violation
    1 : constant.numeric.line-number.find-in-files
    1 : source.adb entity.name.function
    1 : keyword.control.php
    1 : keyword.control.source.cs
    1 : sublimelint.notes
    1 : remark.warning
    1 : support.function.name
    1 : support.function.hash_md.php
    1 : meta.documentation.tag.see.asdoc
    1 : cc0xc
    1 : cc0xb
    1 : cc0xa
    1 : cc0xf
    1 : cc0xe
    1 : cc0xd
    1 : source.js keyword.operator.new
    1 : meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : cc0x5e
    1 : markup.deleted.svn
    1 : string.docstring
    1 : markup.quote.markdown
    1 : cc0x3
    1 : cc0x2
    1 : cc0x1
    1 : cc0x0
    1 : cc0x7
    1 : cc0x6
    1 : cc0x5
    1 : cc0x4
    1 : keyword.other.namespace
    1 : cc0x9
    1 : cc0x8
    1 : flow.enclose.square
    1 : punctuation.definition.entity.css
    1 : keyword.invalid
    1 : meta.tag entity.other
    1 : meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : variable.other.readwrite.global punctuation.definition.variable
    1 : meta.preprocessor keyword
    1 : entity.other.attribute-name.xml
    1 : flow.enclose.macro
    1 : constant.language.boolean.true.js
    1 : meta.use support.class.builtin
    1 : cc0x7e
    1 : cc0x7d
    1 : cc0x7f
    1 : cc0x7a
    1 : cc0x7c
    1 : cc0x7b
    1 : keyword.other.documentation.exception.javadoc
    1 : text.html.django storage.type.attr
    1 : meta.method.identifier
    1 : sublimelinter.outline
    1 : punctuation.section.scope
    1 : variable.other.property.twig
    1 : cc0x99
    1 : cc0x98
    1 : cc0x93
    1 : cc0x92
    1 : cc0x91
    1 : cc0x90
    1 : cc0x97
    1 : cc0x96
    1 : cc0x95
    1 : cc0x94
    1 : markup.inserted.svn
    1 : source.yaml-tmlanguage keyword.other.match
    1 : punctuation.separator.annotation.python
    1 : cc0x75
    1 : cc0x74
    1 : cc0x77
    1 : cc0x76
    1 : cc0x71
    1 : cc0x73
    1 : cc0x72
    1 : cc0x79
    1 : cc0x78
    1 : keyword.main
    1 : cc0x9c
    1 : cc0x9a
    1 : text.xml meta.tag.xml punctuation.definition.tag
    1 : keyword.reporting
    1 : cc0x9f
    1 : cc0x9e
    1 : cc0x9d
    1 : support.ipython.out
    1 : sublimelint.warning
    1 : source.css.less variable.other
    1 : support.type.django.model
    1 : level10
    1 : meta.delimiter.object.comma.js
    1 : active_guide
    1 : support.function - variable
    1 : invisibles
    1 : pyflakeswarning
    1 : string meta.group.regexp punctuation.definition.group
    1 : hyperlink
    1 : punctuation.definition.dictionary
    1 : meta.property-value.constant.named-color.css.keyword.other.unit.css
    1 : keyword.time
    1 : cc0xac
    1 : cc0xab
    1 : cc0xaa
    1 : cc0xaf
    1 : cc0xae
    1 : cc0xad
    1 : string.quoted punctuation.definition.string.begin
    1 : support.variable.language.ee
    1 : entity.name.namespace.clojure
    1 : storage.type.java
    1 : keyword.other.directive.jsp
    1 : cc0x56
    1 : source.ocaml keyword.other.directive.line-number
    1 : entity.name.tag.sass
    1 : string.regexp constant.character.escaped
    1 : string.quoted.double.block
    1 : cc0xa3
    1 : cc0xa2
    1 : cc0xa1
    1 : cc0xa0
    1 : cc0xa7
    1 : cc0xa6
    1 : cc0xa5
    1 : cc0xa4
    1 : support.function.match.clojure
    1 : cc0xa8
    1 : meta.tag.sgml.doctype variable.documentroot.xml
    1 : meta.include.php
    1 : storage.type.accessor
    1 : punctuation.definition.array.begin.php
    1 : source.camlp4.embedded.parser.ocaml
    1 : level0
    1 : level1
    1 : level2
    1 : level3
    1 : level4
    1 : level5
    1 : level6
    1 : level7
    1 : level8
    1 : level9
    1 : support.constant.dom
    1 : entity.other.attribute-name.class.css punctuation
    1 : meta.property-name.sass
    1 : source.css meta.brace
    1 : storage.modifier.source.cs
    1 : source.scss entity.other.attribute-name.class
    1 : support.function.builtin_functions
    1 : keyword.control.tag-name.django
    1 : entity.other.attribute-name.php
    1 : flow.enclose.singlequote
    1 : keyword.operator.symbolic
    1 : punctuation.whitespace.embedded
    1 : message.error
    1 : meta.scope.heredoc
    1 : constant.other.directive.attribute.jsp
    1 : meta.variable-declaration.sass
    1 : support.function.tester
    1 : text.html.basic string.quoted.double.html
    1 : extract.custom.title.sql
    1 : cc0x40
    1 : cc0x41
    1 : cc0x42
    1 : cc0x43
    1 : cc0x44
    1 : cc0x45
    1 : cc0x46
    1 : cc0x47
    1 : cc0x48
    1 : meta.property-name support.type.property-name
    1 : markup.bold.markdownl
    1 : mcol_008000FF
    1 : cc0x4a
    1 : cc0x4b
    1 : cc0x4c
    1 : cc0x4d
    1 : cc0x4e
    1 : cc0x4f
    1 : text.html.django entity.tag.tagbraces
    1 : meta.block-level.markdown
    1 : diff.inserted
    1 : source.css constant.numeric
    1 : keyword.other.documentation.see.javadoc
    1 : keyword.operator.arithmetic.java
    1 : constant.other.adb
    1 : link
    1 : meta.section
    1 : punctuation.definition.tag.begin.ee
    1 : meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : keyword.conditional.java
    1 : punctuation.scss
    1 : keyword.other.namespace.source.cs
    1 : cc0xb9
    1 : comment.line.fixme.php
    1 : punctuation.definition.parameters-group.begin.python
    1 : constant.numeric.twig
    1 : keyword.other.documentation.param.javadoc
    1 : sublimelinter.illegal
    1 : variable.parameter.php
    1 : punctuation.section.property-list.begin.scss
    1 : source.js meta.brace
    1 : keyword.operator.logical.java
    1 : meta.environment-variable string
    1 : cc0x5d
    1 : cc0x5c
    1 : cc0x5b
    1 : cc0x5a
    1 : custom.title.sql
    1 : source.python entity.name.function.decorator
    1 : meta.function-call.twig
    1 : Markdown.inserted
    1 : source.*.embedded
    1 : source.clojure support.other.keyword
    1 : cc0x59
    1 : cc0x58
    1 : cc0x57
    1 : entity.name.type.variant.polymorphic
    1 : cc0x55
    1 : cc0x54
    1 : cc0x53
    1 : cc0x52
    1 : cc0x51
    1 : cc0x50
    1 : meta.property-value.scss support.constant.font-name.scss
    1 : meta.property-value.constant.numeric.css
    1 : string.quoted.other.xml
    1 : meta.attribute-with-value
    1 : source.console
    1 : string.regexp.arbitrary-repitition.php
    1 : source.python meta.function.decorator.python entity.name.function.decorator.python support.type.python
    1 : string.quoted punctuation.definition.string.end
    1 : punctuation.terminator.rule.scss
    1 : source.python constant.other.allcaps.python
    1 : source.python meta.class.python punctuation.definition.inheritance.end.python
    1 : level-1
    1 : entity.name.filename
    1 : entity.parameter.attribute
    1 : variable.language.java
    1 : keyword.other.documentation.return.javadoc
    1 : declaration.function argument-name
    1 : constant.numeric.integer.nativeint
    1 : keyword.other.decorator
    1 : meta.property-value support.constant.property-value.scss
    1 : meta meta meta.structure.dictionary.value string
    1 : cc0xbe
    1 : cc0x70
    1 : source.python meta.class.python storage.type.class.python
    1 : entity.other.jinja.delimiter
    1 : storage.type.attr
    1 : punctuation.definition.string.begin.xml
    1 : text.html.django storage.type.templatetag
    1 : source.css entity.other.attribute-name.pseudo-class
    1 : string.regexp.double-quoted.php
    1 : cc0x9b
    1 : sublimeline.illegal
    1 : support.type.proerty
    1 : source.css support.type.property-name
    1 : meta meta meta meta meta.structure.dictionary.value string
    1 : source.ocaml keyword.operator
    1 : mcol_ff0000FF
    1 : punctuation.definition.tag.end.ee
    1 : storage.type.variant.polymorphic
    1 : string.regexp.single-quoted.php
    1 : source.css constant
    1 : entity.name.function.non-terminal
    1 : string.other.link.title
    1 : source.css keyword
    1 : storage.type.class
    1 : remark.error
    1 : entity.name.filename.adb
    1 : keyword.operator.comparison.java
    1 : cc0x28
    1 : cc0x29
    1 : cc0x22
    1 : cc0x23
    1 : cc0x20
    1 : cc0x21
    1 : cc0x26
    1 : cc0x27
    1 : cc0x24
    1 : cc0x25
    1 : meta meta meta.structure.dictionary string
    1 : constant.language.java
    1 : meta.function.decorator entity.name.function.decorator
    1 : keyword.math
    1 : meta.function.argument.typehinted
    1 : text.html.basic meta.tag.other.html entity.name.tag.other.html
    1 : cc0x2b
    1 : cc0x2a
    1 : cc0x2f
    1 : cc0x2d
    1 : cc0x2e
    1 : punctuation.section.function.scss
    1 : mcol_ffff00FF
    1 : meta.brace.curly
    1 : keyword.operator.logical.ee
    1 : meta.section.attributes.haml
    1 : storage.modifier.global
    1 : meta.tag.inline.any.twig
    1 : support.constant.color.w3c-standard-color-name.css
    1 : console.input
    1 : variable.language.namespace.php
    1 : class
    1 : meta.function-call.other.twig
    1 : punctuation.definition.tag.*.*
    1 : entity.name.type.object.js.firebug
    1 : entity.name.type.token
    1 : text.html.django keyword.control.tag-name
    1 : meta.function.arguments.twig
    1 : string | punctuation.definition.string
    1 : remark.note
    1 : support.other.django.module
    1 : entity.other.attribute-name.tag.pseudo-class.css
    1 : keyword.js
    1 : keyword.other.mark
    1 : punctuation.separator.object.twig
    1 : support.constant.tm-language-def
    1 : constant.language.twig
    1 : entity.other.attribute-name.id.css punctuation
    1 : keyword.other.function
    1 : punctuation - punctuation.definition.comment - punctuation.definition
    1 : declaration.class class-inheritance
    1 : support.keyword.node
    1 : source.css entity.other.attribute-name.class
    1 : string.js
    1 : variable.parameter.url
    1 : invalid.illegal.adb
    1 : cc0x3a
    1 : cc0x3c
    1 : cc0x3b
    1 : cc0x3e
    1 : cc0x3d
    1 : cc0x3f
    1 : meta.sgml.html
    1 : source.css meta.selector.css meta.attribute-selector.css entity.other.attribute-name.attribute.css
    1 : keyword.operator.logical.php
    1 : meta.tag.sgml.doctype variable
    1 : cc0x39
    1 : cc0x38
    1 : keyword.control.ee
    1 : cc0x31
    1 : cc0x30
    1 : entity.other.attribute-name.localname
    1 : cc0x32
    1 : cc0x35
    1 : wordhighlight
    1 : cc0x37
    1 : cc0x36
    1 : meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : text.html.basic
    1 : sublimelinter.violation
    1 : meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : entity.name.tag.haml
    1 : support.function.properties
    1 : flow.pipe
    1 : meta.item-access.arguments
    1 : source.python keyword.operator.logical.python
    1 : meta.function-call.python support.type.python
    1 : punctuation.definition.string.end.xml
    1 : meta.class.identifier
    1 : override.htmlTagPairOccurrenceIndication
    1 : declaration.function function-arg-type
    1 : source.ruby support.class.ruby
    1 : constant.language.null.actionscript
    1 : text.html.basic entity.name.tag.script
    1 : meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary string
    1 : keyword.operator.infix.floating-point.ocaml
    1 : keyword.control.at-rule.include.scss
    1 : entity.name.type.namespace
    1 : keyword.adb
    1 : entity.other.attribute-selector.sass
    1 : string.quoted.single.css
    1 : entity.name.function.non-terminal.reference
    1 : entity.name.function.twig
    1 : remark.done
    1 : meta.array.twig
    1 : string source string
    1 : markup.raw punctuation
    1 : support.class.js.jquery
    1 : storage.type.import
    1 : keyword.other.important
    1 : keyword.other.documentation.serial.javadoc
    1 : keyword.other.documentation.deprecated.javadoc
    1 : punctuation - punctuation.definition.comment
    1 : cc0xdf
    1 : punctuation.separator.key-value.scss
    1 : entity.name.function.scss
    1 : entity.name.type.variant
    1 : meta.property-list.css meta.property-value.css
    1 : punctuation.definition.arguments
    1 : source.r.embedded
    1 : source.css keyword.control.html
    1 : meta.toc-list.line-number.diff
    1 : override.searchResultIndication
    1 : meta.item-access
    1 : storage.type.object.array.java
    1 : source.python meta.class.old-style.python storage.type.class.python
    1 : source.camlp4.embedded
    1 : support.orther.namespace.use.php
    1 : text.xml meta.tag.xml
    1 : string.unquoted.cdata.xml
    1 : meta.class.identifier.source.cs
    1 : keyword.irreversible
    1 : keyword.markup.element-name
    1 : keyword.control.at-rule.import.scss
    1 : declaration.function.operator
    1 : entity.other.attribute-name.placeholder-selector.sass