textpow 0.10.1 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +7 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +30 -0
- data/{History.txt → History.rdoc} +10 -0
- data/{README.txt → MIT-LICENSE.txt} +0 -30
- data/README.rdoc +82 -0
- data/Rakefile +42 -49
- data/bin/plist2syntax +0 -0
- data/bin/plist2yaml +0 -0
- data/examples/benchmark_js.rb +13 -0
- data/examples/jquery.js +9046 -0
- data/lib/textpow.rb +43 -3
- data/lib/textpow/debug_processor.rb +35 -35
- data/lib/textpow/recording_processor.rb +13 -0
- data/lib/textpow/score_manager.rb +60 -60
- data/lib/textpow/syntax.rb +303 -262
- data/lib/textpow/syntax/broken/markdown.syntax +519 -0
- data/lib/textpow/syntax/broken/php.syntax +1253 -0
- data/lib/textpow/syntax/buggy/nemerle.syntax +74 -0
- data/lib/textpow/syntax/old/YAML.yaml +160 -0
- data/lib/textpow/syntax/old/txt2tags.yaml +139 -0
- data/lib/textpow/syntax/source.actionscript.syntax +97 -0
- data/lib/textpow/syntax/source.active4d.library.syntax +21 -0
- data/lib/textpow/syntax/source.active4d.syntax +276 -0
- data/lib/textpow/syntax/source.ada.syntax +33 -0
- data/lib/textpow/syntax/source.antlr.syntax +151 -0
- data/lib/textpow/syntax/source.apache-config.mod_perl.syntax +50 -0
- data/lib/textpow/syntax/source.apache-config.syntax +191 -0
- data/lib/textpow/syntax/source.applescript.syntax +384 -0
- data/lib/textpow/syntax/source.asp.syntax +70 -0
- data/lib/textpow/syntax/source.asp.vb.net.syntax +129 -0
- data/lib/textpow/syntax/source.c++.qt.syntax +26 -0
- data/lib/textpow/syntax/source.c++.syntax +186 -0
- data/lib/textpow/syntax/source.c-sharp.syntax +59 -0
- data/lib/textpow/syntax/source.c.ragel.syntax +201 -0
- data/lib/textpow/syntax/source.c.syntax +414 -0
- data/lib/textpow/syntax/source.camlp4.ocaml.syntax +36 -0
- data/lib/textpow/syntax/source.cm.syntax +32 -0
- data/lib/textpow/syntax/source.coffee.syntax +216 -0
- data/lib/textpow/syntax/source.context-free.syntax +176 -0
- data/lib/textpow/syntax/source.css.beta.syntax +1925 -0
- data/lib/textpow/syntax/source.css.syntax +195 -0
- data/lib/textpow/syntax/source.d.syntax +142 -0
- data/lib/textpow/syntax/source.diff.syntax +81 -0
- data/lib/textpow/syntax/source.dot.syntax +47 -0
- data/lib/textpow/syntax/source.dylan.syntax +62 -0
- data/lib/textpow/syntax/source.eiffel.syntax +78 -0
- data/lib/textpow/syntax/source.erlang.syntax +922 -0
- data/lib/textpow/syntax/source.fortran.syntax +141 -0
- data/lib/textpow/syntax/source.fscript.syntax +80 -0
- data/lib/textpow/syntax/source.fxscript.syntax +142 -0
- data/lib/textpow/syntax/source.gri.syntax +83 -0
- data/lib/textpow/syntax/source.groovy.groovy.syntax +191 -0
- data/lib/textpow/syntax/source.haskell.syntax +88 -0
- data/lib/textpow/syntax/source.icalendar.syntax +32 -0
- data/lib/textpow/syntax/source.inform.syntax +48 -0
- data/lib/textpow/syntax/source.ini.syntax +55 -0
- data/lib/textpow/syntax/source.io.syntax +81 -0
- data/lib/textpow/syntax/source.java-props.syntax +20 -0
- data/lib/textpow/syntax/source.java.syntax +211 -0
- data/lib/textpow/syntax/source.js.greasemonkey.syntax +34 -0
- data/lib/textpow/syntax/source.js.jquery.syntax +114 -0
- data/lib/textpow/syntax/source.js.mootools.syntax +572 -0
- data/lib/textpow/syntax/source.js.prototype.bracketed.syntax +140 -0
- data/lib/textpow/syntax/source.js.prototype.syntax +72 -0
- data/lib/textpow/syntax/source.js.syntax +256 -0
- data/lib/textpow/syntax/source.js.yui.syntax +176 -0
- data/lib/textpow/syntax/source.json.syntax +136 -0
- data/lib/textpow/syntax/source.lex.syntax +219 -0
- data/lib/textpow/syntax/source.lighttpd-config.syntax +54 -0
- data/lib/textpow/syntax/source.lilypond.syntax +492 -0
- data/lib/textpow/syntax/source.lisp.syntax +61 -0
- data/lib/textpow/syntax/source.logo.syntax +29 -0
- data/lib/textpow/syntax/source.logtalk.syntax +152 -0
- data/lib/textpow/syntax/source.lua.syntax +86 -0
- data/lib/textpow/syntax/source.makefile.syntax +36 -0
- data/lib/textpow/syntax/source.matlab.syntax +142 -0
- data/lib/textpow/syntax/source.mel.syntax +92 -0
- data/lib/textpow/syntax/source.mips.syntax +66 -0
- data/lib/textpow/syntax/source.ml.syntax +121 -0
- data/lib/textpow/syntax/source.modula-3.syntax +47 -0
- data/lib/textpow/syntax/source.nant-build.syntax +53 -0
- data/lib/textpow/syntax/source.objc++.syntax +18 -0
- data/lib/textpow/syntax/source.objc.syntax +233 -0
- data/lib/textpow/syntax/source.ocaml.syntax +764 -0
- data/lib/textpow/syntax/source.ocamllex.syntax +167 -0
- data/lib/textpow/syntax/source.ocamlyacc.syntax +184 -0
- data/lib/textpow/syntax/source.open-gl.syntax +14 -0
- data/lib/textpow/syntax/source.pascal.syntax +77 -0
- data/lib/textpow/syntax/source.pascal.vectorscript.syntax +57 -0
- data/lib/textpow/syntax/source.perl.syntax +1113 -0
- data/lib/textpow/syntax/source.php.cake.syntax +55 -0
- data/lib/textpow/syntax/source.plist.tm-grammar.syntax +708 -0
- data/lib/textpow/syntax/source.postscript.syntax +114 -0
- data/lib/textpow/syntax/source.processing.syntax +106 -0
- data/lib/textpow/syntax/source.prolog.syntax +40 -0
- data/lib/textpow/syntax/source.python.django.syntax +21 -0
- data/lib/textpow/syntax/source.python.syntax +868 -0
- data/lib/textpow/syntax/source.qmake.syntax +114 -0
- data/lib/textpow/syntax/source.quake-config.syntax +32 -0
- data/lib/textpow/syntax/source.r-console.syntax +16 -0
- data/lib/textpow/syntax/source.r.syntax +81 -0
- data/lib/textpow/syntax/source.regexp.oniguruma.syntax +107 -0
- data/lib/textpow/syntax/source.regexp.python.syntax +109 -0
- data/lib/textpow/syntax/source.regexp.syntax +50 -0
- data/lib/textpow/syntax/source.remind.syntax +253 -0
- data/lib/textpow/syntax/source.rez.syntax +80 -0
- data/lib/textpow/syntax/source.ruby.experimental.syntax +145 -0
- data/lib/textpow/syntax/source.ruby.rails.syntax +88 -0
- data/lib/textpow/syntax/source.ruby.syntax +1035 -0
- data/lib/textpow/syntax/source.s5.syntax +69 -0
- data/lib/textpow/syntax/source.sass.syntax +45 -0
- data/lib/textpow/syntax/source.scheme.syntax +347 -0
- data/lib/textpow/syntax/source.scilab.syntax +41 -0
- data/lib/textpow/syntax/source.scss.syntax +527 -0
- data/lib/textpow/syntax/source.shell.syntax +384 -0
- data/lib/textpow/syntax/source.slate.syntax +149 -0
- data/lib/textpow/syntax/source.smarty.syntax +63 -0
- data/lib/textpow/syntax/source.sql.ruby.syntax +18 -0
- data/lib/textpow/syntax/source.sql.syntax +237 -0
- data/lib/textpow/syntax/source.ssh-config.syntax +33 -0
- data/lib/textpow/syntax/source.strings.syntax +39 -0
- data/lib/textpow/syntax/source.swig.syntax +57 -0
- data/lib/textpow/syntax/source.tcl.macports.syntax +163 -0
- data/lib/textpow/syntax/source.tcl.syntax +152 -0
- data/lib/textpow/syntax/source.yaml.syntax +160 -0
- data/lib/textpow/syntax/text.active4d-ini.syntax +50 -0
- data/lib/textpow/syntax/text.bbcode.syntax +287 -0
- data/lib/textpow/syntax/text.bibtex.syntax +151 -0
- data/lib/textpow/syntax/text.blog.html.syntax +41 -0
- data/lib/textpow/syntax/text.blog.markdown.syntax +42 -0
- data/lib/textpow/syntax/text.blog.syntax +27 -0
- data/lib/textpow/syntax/text.blog.textile.syntax +27 -0
- data/lib/textpow/syntax/text.gtdalt.syntax +143 -0
- data/lib/textpow/syntax/text.haml.syntax +88 -0
- data/lib/textpow/syntax/text.html.asp.net.syntax +424 -0
- data/lib/textpow/syntax/text.html.asp.syntax +27 -0
- data/lib/textpow/syntax/text.html.basic.syntax +362 -0
- data/lib/textpow/syntax/text.html.cfm.syntax +119 -0
- data/lib/textpow/syntax/text.html.django.syntax +36 -0
- data/lib/textpow/syntax/text.html.dokuwiki.syntax +204 -0
- data/lib/textpow/syntax/text.html.doxygen.syntax +43 -0
- data/lib/textpow/syntax/text.html.markdown.multimarkdown.syntax +39 -0
- data/lib/textpow/syntax/text.html.mason.syntax +119 -0
- data/lib/textpow/syntax/text.html.mediawiki.syntax +567 -0
- data/lib/textpow/syntax/text.html.mt.syntax +162 -0
- data/lib/textpow/syntax/text.html.ruby.syntax +40 -0
- data/lib/textpow/syntax/text.html.strict.active4d.syntax +311 -0
- data/lib/textpow/syntax/text.html.tcl.syntax +26 -0
- data/lib/textpow/syntax/text.html.textile.syntax +215 -0
- data/lib/textpow/syntax/text.html.tt.syntax +121 -0
- data/lib/textpow/syntax/text.html.twiki.syntax +241 -0
- data/lib/textpow/syntax/text.html.xhtml.1-strict.syntax +4027 -0
- data/lib/textpow/syntax/text.log.latex.syntax +50 -0
- data/lib/textpow/syntax/text.mail.markdown.syntax +118 -0
- data/lib/textpow/syntax/text.man.syntax +17 -0
- data/lib/textpow/syntax/text.moinmoin.syntax +189 -0
- data/lib/textpow/syntax/text.plain.gtd.syntax +22 -0
- data/lib/textpow/syntax/text.plain.release-notes.syntax +46 -0
- data/lib/textpow/syntax/text.plain.syntax +32 -0
- data/lib/textpow/syntax/text.plist.syntax +635 -0
- data/lib/textpow/syntax/text.pmwiki.syntax +113 -0
- data/lib/textpow/syntax/text.restructuredtext.syntax +250 -0
- data/lib/textpow/syntax/text.setext.syntax +147 -0
- data/lib/textpow/syntax/text.subversion-commit.syntax +36 -0
- data/lib/textpow/syntax/text.tabular.csv.syntax +68 -0
- data/lib/textpow/syntax/text.tabular.tsv.syntax +50 -0
- data/lib/textpow/syntax/text.tex.latex.beamer.syntax +41 -0
- data/lib/textpow/syntax/text.tex.latex.haskell.syntax +24 -0
- data/lib/textpow/syntax/text.tex.latex.memoir.syntax +64 -0
- data/lib/textpow/syntax/text.tex.latex.rd.syntax +91 -0
- data/lib/textpow/syntax/text.tex.latex.sweave.syntax +84 -0
- data/lib/textpow/syntax/text.tex.latex.syntax +566 -0
- data/lib/textpow/syntax/text.tex.math.syntax +49 -0
- data/lib/textpow/syntax/text.tex.syntax +86 -0
- data/lib/textpow/syntax/text.txt2tags.syntax +79 -0
- data/lib/textpow/syntax/text.xml.apple-dist.syntax +77 -0
- data/lib/textpow/syntax/text.xml.strict.syntax +92 -0
- data/lib/textpow/syntax/text.xml.syntax +180 -0
- data/lib/textpow/syntax/text.xml.xsl.syntax +60 -0
- data/lib/textpow/version.rb +3 -0
- data/spec/fixtures/objeck.plist +107 -0
- data/spec/fixtures/utf8.txt +1 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/textpow/score_manager_spec.rb +20 -0
- data/spec/textpow/syntax_files_spec.rb +26 -0
- data/spec/textpow/syntax_spec.rb +225 -0
- data/spec/textpow_spec.rb +57 -0
- data/textpow.gemspec +19 -0
- metadata +246 -68
- data/Manifest.txt +0 -13
- data/mm/manual.mm +0 -266
- data/test/test_textpow.rb +0 -25
@@ -0,0 +1,55 @@
|
|
1
|
+
---
|
2
|
+
name: Cake
|
3
|
+
fileTypes:
|
4
|
+
- thtml
|
5
|
+
scopeName: source.php.cake
|
6
|
+
uuid: 3DF2FE0B-94CC-4EE2-A50A-BD4823D1B09D
|
7
|
+
foldingStartMarker: (/\*|\{|\()
|
8
|
+
patterns:
|
9
|
+
- name: support.function.model.cake
|
10
|
+
match: \b(bindModel|unbindModel|hasField|read|field|save|saveField|remove|del|delete|exists|hasAny|find|findAll|findCount|execute|query|validates|invalidate|invalidFields|isForeignKey|getDisplayField|generateList|getID|getLastInsertID|getInsertID|getNumRows|getAffectedRows|setDatasource|beforeFind|afterFind|beforeSave|afterSave|beforeDelete|afterDelete)\b
|
11
|
+
- name: support.function.controller.cake
|
12
|
+
match: \b(redirect|set|setAction|validate|validateErrors|render|referer|flash|flashOut|generateFieldNames|postCondtions|cleanUpFields|beforeFilter|beforeRender|afterFilter)\b
|
13
|
+
- name: support.constant.core.cake
|
14
|
+
match: \b(ACL_CLASSNAME|ACL_FILENAME|APP|APP_DIR|APP_PATH|AUTO_OUTPUT|AUTO_SESSION|CACHE|CACHE_CHECK|CAKE|CAKE_CORE_INCLUDE_PATH|CAKE_SECURITY|CAKE_SESSION_COOKIE|CAKE_SESSION_SAVE|CAKE_SESSION_STRING|CAKE_SESSION_TIMEOUT|COMPONENTS|COMPRESS_CSS|CONFIGS|CONTROLLER_TESTS|CONTROLLERS|CORE_PATH|CSS|DAY|DEBUG|DS|ELEMENTS|HELPER_TESTS|HELPERS|HOUR|INFLECTIONS|JS|LAYOUTS|LIB_TESTS|LIBS|LOG_ERROR|LOGS|MAX_MD5SIZE|MINUTE|MODEL_TESTS|MODELS|MODULES|MONTH|PEAR|ROOT|SCRIPTS|SECOND|TAG_DIV|TAG_FIELDSET|TAG_LABEL|TAG_P_CLASS|TESTS|TMP|VALID_EMAIL|VALID_NOT_EMPTY|VALID_NUMBER|VALID_YEAR|VENDORS|VIEWS|WEBROOT_DIR|WEBSERVICES|WEEK|WWW_ROOT|YEAR)\b
|
15
|
+
- name: invalid.deprecated.model.cake
|
16
|
+
match: \b(setId|findBySql)\b
|
17
|
+
- name: invalid.deprecated.helper.html.cake
|
18
|
+
match: \b(areaTag|charsetTag|checkboxTag|contentTag|cssTag|fileTag|formTag|guiListTag|hiddenTag|imageTag|inputTag|javascriptIncludeTag|javascriptTag|linkEmail|linkOut|linkTo|parseHtmlOptions|passwordTag|radioTags|submitTag|tag|urlFor)\b
|
19
|
+
- name: invalid.deprecated.helper.ajax.cake
|
20
|
+
match: \b(linkToRemote)\b
|
21
|
+
- name: support.function.helper.cake
|
22
|
+
match: \b(isFieldError|labelTag|divTag|pTag|generate(Input|Checkbox|Area|Select|submit)Div|generate(Date|DateTime|Fields))\b
|
23
|
+
- name: support.function.helper.html.cake
|
24
|
+
match: \b(addCrumb|charset|url|link|submit|password|textarea|checkbox|css|file|getCrumbs|hidden|image|input|radio|tableHeaders|tableCells|validate|tagIsValid|validateErrors|tagErrorMsg|selectTag|(day|year|month|hour|minute|meridian|date)OptionTag)\b
|
25
|
+
- name: support.function.helper.ajax.cake
|
26
|
+
match: \b(link|remoteFunction|remoteTimer|form|submit|observe(Field|Form)|autoComplete|drag|drop|dropRemote|slider|editor|sortable)\b
|
27
|
+
- name: support.function.file.cake
|
28
|
+
match: \b(read|append|write|get(Md5|Size|Ext|Name|Owner|Group|Folder|Chmod|FullPath)|create|exists|delete|writable|executable|readable|last(Access|Change))\b
|
29
|
+
- name: support.function.log.cake
|
30
|
+
match: \b(write)\b
|
31
|
+
- name: support.function.helper.number.cake
|
32
|
+
match: \b(precision|toReadableSize|toPercentage)\b
|
33
|
+
- name: support.function.component.requestHandler.cake
|
34
|
+
match: \b(startup|setAjax|is(Ajax|Xml|Rss|Atom|Post|Get|Delete|Mobile)|getAjaxVersion|setContent|get(Referer|ClientIP)|strip(WhiteSpace|Images|Scripts|All|tags)|accepts|prefers)\b
|
35
|
+
- name: support.function.component.session.cake
|
36
|
+
match: \b(write|read|del|delete|check|error|setFlash|flash|renew|valid)\b
|
37
|
+
- name: support.function.component.security.cake
|
38
|
+
match: \b(startup|blackHole|requirePost|requireAuth)\b
|
39
|
+
- name: support.function.component.sanitize.cake
|
40
|
+
match: \b(paranoid|sql|html|cleanArray|cleanArrayR|cleanValue|formatColumns)\b
|
41
|
+
- name: support.function.helper.time.cake
|
42
|
+
match: \b(trim|fromString|nice|niceShort|isToday|daysAsSql|dayAsSql|isThisYear|wasYesterday|isTomorrow|toUnix|toAtom|toRSS|timeAgoInWords|relativeTime|wasWithinLast)\b
|
43
|
+
- name: support.function.helper.text.cake
|
44
|
+
match: \b(highlight|stripLinks|autoLinkUrls|autoLinkEmails|autoLink|truncate|excerpt|flay)\b
|
45
|
+
- name: support.function.helper.javascript.cake
|
46
|
+
match: \b(codeBlock|link|linkOut|escape(String|Script)|event|(cache|write)Events|includeScript|object)\b
|
47
|
+
- name: support.function.neatArray.cake
|
48
|
+
match: \b(findIn|cleanup|add|plus|totals|filter|walk|sprintf|extract|unique|makeUnique|joinWith|threaded|multi_search)\b
|
49
|
+
- name: support.function.neatString.cake
|
50
|
+
match: \b(toArray|toRoman|toCompressed|randomPassword)\b
|
51
|
+
- name: support.function.basics.cake
|
52
|
+
match: \b(load(Models|PluginModels|View|Model|Controllers|PluginController)|listClasses|config|gendor|debug|aa|ha|a|e|low|up|r|pr|params|am|setUri|env|cache|clearCache|stripslashes_deep|countDim|LogError|fileExistsInPAth|convertSlash)\b
|
53
|
+
- include: source.php
|
54
|
+
- include: text.html.basic
|
55
|
+
foldingStopMarker: (\*/|\}|\))
|
@@ -0,0 +1,708 @@
|
|
1
|
+
---
|
2
|
+
name: Language Grammar
|
3
|
+
fileTypes:
|
4
|
+
- textmate
|
5
|
+
firstLineMatch: ^\{\s*scopeName = .*$
|
6
|
+
scopeName: source.plist.tm-grammar
|
7
|
+
repository:
|
8
|
+
invalid-keyword:
|
9
|
+
patterns:
|
10
|
+
- name: invalid.illegal.constant.misplaced-keyword.tm-grammar
|
11
|
+
match: \b(fileTypes|foldingStartMarker|foldingStopMarker|patterns|match|begin|end|include|scopeName|captures|beginCaptures|endCaptures|firstLineMatch|comment|repository|disabled|contentName|applyEndPatternLast)\b(?=\s*=)
|
12
|
+
- name: invalid.deprecated.constant.tm-grammar
|
13
|
+
match: \b(swallow|mode)\b(?=\s*=)
|
14
|
+
- name: invalid.illegal.constant.outdated.tm-grammar
|
15
|
+
match: \b(foregroundColor|backgroundColor|fontStyle|elementForegroundColor|elementBackgroundColor|elementFontStyle|highlightPairs|smartTypingPairs|increaseIndentPattern)\b(?=\s*=)
|
16
|
+
- name: invalid.illegal.constant.unknown-keyword.tm-grammar
|
17
|
+
match: "[-a-zA-Z_.]+(?=\\s*=)"
|
18
|
+
any:
|
19
|
+
patterns:
|
20
|
+
- include: "#comment"
|
21
|
+
- include: "#string"
|
22
|
+
- include: "#array"
|
23
|
+
- include: "#dictionary"
|
24
|
+
- include: "#catch-all"
|
25
|
+
scope:
|
26
|
+
patterns:
|
27
|
+
- name: string.quoted.single.scope.tm-grammar
|
28
|
+
captures:
|
29
|
+
"1":
|
30
|
+
name: punctuation.definition.string.begin.tm-grammar
|
31
|
+
"2":
|
32
|
+
name: constant.other.scope.tm-grammar
|
33
|
+
"3":
|
34
|
+
name: constant.other.scope.tm-grammar
|
35
|
+
"4":
|
36
|
+
name: invalid.deprecated.scope_not_allowed.tm-grammar
|
37
|
+
"5":
|
38
|
+
name: punctuation.definition.string.end.tm-grammar
|
39
|
+
match: "(?x)\n\
|
40
|
+
\t\t\t\t\t\t(')\t\t\t\t\t\t\t\t# Open String\n\
|
41
|
+
\t\t\t\t\t\t\t(\t\t\t\t\t\t\t# Optionally match the valid\n\
|
42
|
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t# scopes, and the following\n\
|
43
|
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t# part of the scope, meaning\n\
|
44
|
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t# anything else is invalid\n\
|
45
|
+
\t\t\t\t\t\t\t\tcomment(?:\n\
|
46
|
+
\t\t\t\t\t\t\t\t\t\\.(?:line|block)\n\
|
47
|
+
\t\t\t\t\t\t\t\t)?\n\
|
48
|
+
\t\t\t\t\t\t\t | constant(?:\n\
|
49
|
+
\t\t\t\t\t\t\t\t\t\\.(?:numeric|character|language|other)\n\
|
50
|
+
\t\t\t\t\t\t\t\t)?\n\
|
51
|
+
\t\t\t\t\t\t\t | entity(?:\n\
|
52
|
+
\t\t\t\t\t\t\t\t\t\\.name(?:\n\
|
53
|
+
\t\t\t\t\t\t\t\t\t\t\\.(?:function|type|tag|section)\n\
|
54
|
+
\t\t\t\t\t\t\t\t\t)?\n\
|
55
|
+
\t\t\t\t\t\t\t\t | \\.other(?:\n\
|
56
|
+
\t\t\t\t\t\t\t\t\t\t\\.(?:inherited-class|attribute-name)\n\
|
57
|
+
\t\t\t\t\t\t\t\t\t)?\n\
|
58
|
+
\t\t\t\t\t\t\t\t)?\n\
|
59
|
+
\t\t\t\t\t\t\t | invalid(?:\n\
|
60
|
+
\t\t\t\t\t\t\t\t\t\\.(?:illegal|deprecated)\n\
|
61
|
+
\t\t\t\t\t\t\t\t)?\n\
|
62
|
+
\t\t\t\t\t\t\t | keyword(?:\n\
|
63
|
+
\t\t\t\t\t\t\t\t\t\\.(?:control|operator|other)\n\
|
64
|
+
\t\t\t\t\t\t\t\t)?\n\
|
65
|
+
\t\t\t\t\t\t\t | markup(?:\n\
|
66
|
+
\t\t\t\t\t\t\t\t\t\\.(?:underline|bold|heading|italic|list|quote|raw|other)\n\
|
67
|
+
\t\t\t\t\t\t\t\t)?\n\
|
68
|
+
\t\t\t\t\t\t\t | meta\n\
|
69
|
+
\t\t\t\t\t\t\t | punctuation(?:\n\
|
70
|
+
\t\t\t\t\t\t\t\t\t\\.(?:definition|section|separator|terminator|whitespace)\n\
|
71
|
+
\t\t\t\t\t\t\t\t)?\n\
|
72
|
+
\t\t\t\t\t\t\t | source\n\
|
73
|
+
\t\t\t\t\t\t\t | storage(?:\n\
|
74
|
+
\t\t\t\t\t\t\t\t\t\\.(?:type|modifier)\n\
|
75
|
+
\t\t\t\t\t\t\t\t)?\n\
|
76
|
+
\t\t\t\t\t\t\t | string(?:\n\
|
77
|
+
\t\t\t\t\t\t\t\t\t\\.(?:\n\
|
78
|
+
\t\t\t\t\t\t\t\t\t\tquoted(?:\n\
|
79
|
+
\t\t\t\t\t\t\t\t\t\t\t\\.(?:single|double|triple|other)\n\
|
80
|
+
\t\t\t\t\t\t\t\t\t\t)?\n\
|
81
|
+
\t\t\t\t\t\t\t\t\t | (?:unquoted|interpolated|regexp|other)\n\
|
82
|
+
\t\t\t\t\t\t\t\t\t)\n\
|
83
|
+
\t\t\t\t\t\t\t\t)?\n\
|
84
|
+
\t\t\t\t\t\t\t | support(?:\n\
|
85
|
+
\t\t\t\t\t\t\t\t\t\\.(?:function|class|type|constant|variable|other)\n\
|
86
|
+
\t\t\t\t\t\t\t\t)?\n\
|
87
|
+
\t\t\t\t\t\t\t | text\n\
|
88
|
+
\t\t\t\t\t\t\t | variable(?:\n\
|
89
|
+
\t\t\t\t\t\t\t\t\t\\.(?:parameter|language|other)\n\
|
90
|
+
\t\t\t\t\t\t\t\t)?\n\
|
91
|
+
\t\t\t\t\t\t\t)?\n\
|
92
|
+
\t\t\t\t\t\t\t((?<!')[^\\s,()&|\\[\\]:\"'{}<>*?=^;]*(?<!\\.))?\n\
|
93
|
+
\t\t\t\t\t\t\t([^']*)?\n\
|
94
|
+
\t\t\t\t\t\t(')\t\t\t\t\t\t\t\t# Close String\n\
|
95
|
+
\t\t\t\t\t"
|
96
|
+
- name: string.quoted.double.scope.tm-grammar
|
97
|
+
captures:
|
98
|
+
"1":
|
99
|
+
name: punctuation.definition.string.begin.tm-grammar
|
100
|
+
"2":
|
101
|
+
name: constant.other.scope.tm-grammar
|
102
|
+
"3":
|
103
|
+
name: constant.other.scope.tm-grammar
|
104
|
+
"4":
|
105
|
+
name: invalid.deprecated.scope_not_allowed.tm-grammar
|
106
|
+
"5":
|
107
|
+
name: punctuation.definition.string.end.tm-grammar
|
108
|
+
match: "(?x)\n\
|
109
|
+
\t\t\t\t\t\t(\")\t\t\t\t\t\t\t\t# Open String\n\
|
110
|
+
\t\t\t\t\t\t\t(\t\t\t\t\t\t\t# Optionally match the valid\n\
|
111
|
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t# scopes, and the following\n\
|
112
|
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t# part of the scope, meaning\n\
|
113
|
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t# anything else is invalid\n\
|
114
|
+
\t\t\t\t\t\t\t\tcomment(?:\n\
|
115
|
+
\t\t\t\t\t\t\t\t\t\\.(?:line|block)\n\
|
116
|
+
\t\t\t\t\t\t\t\t)?\n\
|
117
|
+
\t\t\t\t\t\t\t | constant(?:\n\
|
118
|
+
\t\t\t\t\t\t\t\t\t\\.(?:numeric|character|language|other)\n\
|
119
|
+
\t\t\t\t\t\t\t\t)?\n\
|
120
|
+
\t\t\t\t\t\t\t | entity(?:\n\
|
121
|
+
\t\t\t\t\t\t\t\t\t\\.name(?:\n\
|
122
|
+
\t\t\t\t\t\t\t\t\t\t\\.(?:function|type|tag|section)\n\
|
123
|
+
\t\t\t\t\t\t\t\t\t)?\n\
|
124
|
+
\t\t\t\t\t\t\t\t | \\.other(?:\n\
|
125
|
+
\t\t\t\t\t\t\t\t\t\t\\.(?:inherited-class|attribute-name)\n\
|
126
|
+
\t\t\t\t\t\t\t\t\t)?\n\
|
127
|
+
\t\t\t\t\t\t\t\t)?\n\
|
128
|
+
\t\t\t\t\t\t\t | invalid(?:\n\
|
129
|
+
\t\t\t\t\t\t\t\t\t\\.(?:illegal|deprecated)\n\
|
130
|
+
\t\t\t\t\t\t\t\t)?\n\
|
131
|
+
\t\t\t\t\t\t\t | keyword(?:\n\
|
132
|
+
\t\t\t\t\t\t\t\t\t\\.(?:control|operator|other)\n\
|
133
|
+
\t\t\t\t\t\t\t\t)?\n\
|
134
|
+
\t\t\t\t\t\t\t | markup(?:\n\
|
135
|
+
\t\t\t\t\t\t\t\t\t\\.(?:underline|bold|heading|italic|list|quote|raw|other)\n\
|
136
|
+
\t\t\t\t\t\t\t\t)?\n\
|
137
|
+
\t\t\t\t\t\t\t | meta\n\
|
138
|
+
\t\t\t\t\t\t\t | punctuation(?:\n\
|
139
|
+
\t\t\t\t\t\t\t\t\t\\.(?:definition|section|separator|terminator|whitespace)\n\
|
140
|
+
\t\t\t\t\t\t\t\t)?\n\
|
141
|
+
\t\t\t\t\t\t\t | source\n\
|
142
|
+
\t\t\t\t\t\t\t | storage(?:\n\
|
143
|
+
\t\t\t\t\t\t\t\t\t\\.(?:type|modifier)\n\
|
144
|
+
\t\t\t\t\t\t\t\t)?\n\
|
145
|
+
\t\t\t\t\t\t\t | string(?:\n\
|
146
|
+
\t\t\t\t\t\t\t\t\t\\.(?:\n\
|
147
|
+
\t\t\t\t\t\t\t\t\t\tquoted(?:\n\
|
148
|
+
\t\t\t\t\t\t\t\t\t\t\t\\.(?:single|double|triple|other)\n\
|
149
|
+
\t\t\t\t\t\t\t\t\t\t)?\n\
|
150
|
+
\t\t\t\t\t\t\t\t\t | (?:unquoted|interpolated|regexp|other)\n\
|
151
|
+
\t\t\t\t\t\t\t\t\t)\n\
|
152
|
+
\t\t\t\t\t\t\t\t)?\n\
|
153
|
+
\t\t\t\t\t\t\t | support(?:\n\
|
154
|
+
\t\t\t\t\t\t\t\t\t\\.(?:function|class|type|constant|variable|other)\n\
|
155
|
+
\t\t\t\t\t\t\t\t)?\n\
|
156
|
+
\t\t\t\t\t\t\t | text\n\
|
157
|
+
\t\t\t\t\t\t\t | variable(?:\n\
|
158
|
+
\t\t\t\t\t\t\t\t\t\\.(?:parameter|language|other)\n\
|
159
|
+
\t\t\t\t\t\t\t\t)?\n\
|
160
|
+
\t\t\t\t\t\t\t)?\n\
|
161
|
+
\t\t\t\t\t\t\t((?<!\")[^\\s,()&|\\[\\]:\"'{}<>*?=^;]*(?<!\\.))?\n\
|
162
|
+
\t\t\t\t\t\t\t([^\"]*)?\n\
|
163
|
+
\t\t\t\t\t\t(\")\t\t\t\t\t\t\t\t# Close String\n\
|
164
|
+
\t\t\t\t\t"
|
165
|
+
regexp:
|
166
|
+
patterns:
|
167
|
+
- name: string.regexp.oniguruma.single.tm-grammar
|
168
|
+
endCaptures:
|
169
|
+
"1":
|
170
|
+
name: punctuation.definition.string.end.tm-grammar
|
171
|
+
begin: (')
|
172
|
+
beginCaptures:
|
173
|
+
"1":
|
174
|
+
name: punctuation.definition.string.begin.tm-grammar
|
175
|
+
end: (')(?!')
|
176
|
+
patterns:
|
177
|
+
- name: constant.character.escape.apostrophe.tm-grammar
|
178
|
+
match: "''"
|
179
|
+
- include: source.regexp.oniguruma
|
180
|
+
- name: string.regexp.oniguruma.double.tm-grammar
|
181
|
+
endCaptures:
|
182
|
+
"1":
|
183
|
+
name: punctuation.definition.string.end.tm-grammar
|
184
|
+
begin: (")
|
185
|
+
beginCaptures:
|
186
|
+
"1":
|
187
|
+
name: punctuation.definition.string.begin.tm-grammar
|
188
|
+
end: (")
|
189
|
+
patterns:
|
190
|
+
- name: constant.character.escape.tm-grammar
|
191
|
+
match: \\\\|\\"
|
192
|
+
- include: source.regexp.oniguruma
|
193
|
+
dictionary:
|
194
|
+
captures:
|
195
|
+
"1":
|
196
|
+
name: punctuation.section.dictionary.tm-grammar
|
197
|
+
begin: (\{)
|
198
|
+
end: (\})
|
199
|
+
patterns:
|
200
|
+
- include: "#comment"
|
201
|
+
- include: "#string"
|
202
|
+
- endCaptures:
|
203
|
+
"1":
|
204
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
205
|
+
begin: (=)
|
206
|
+
beginCaptures:
|
207
|
+
"1":
|
208
|
+
name: punctuation.separator.key-value.tm-grammar
|
209
|
+
end: (;)
|
210
|
+
patterns:
|
211
|
+
- include: "#any"
|
212
|
+
- name: punctuation.terminator.dictionary.tm-grammar
|
213
|
+
match: ;
|
214
|
+
- include: "#catch-all"
|
215
|
+
catch-all:
|
216
|
+
patterns:
|
217
|
+
- match: \s+
|
218
|
+
- name: invalid.illegal.unrecognized-character.tm-grammar
|
219
|
+
match: .
|
220
|
+
scope-root:
|
221
|
+
patterns:
|
222
|
+
- name: string.quoted.single.scope.root.tm-grammar
|
223
|
+
captures:
|
224
|
+
"1":
|
225
|
+
name: punctuation.definition.string.begin.tm-grammar
|
226
|
+
"2":
|
227
|
+
name: constant.other.scope.tm-grammar
|
228
|
+
"3":
|
229
|
+
name: invalid.deprecated.scope_not_allowed.tm-grammar
|
230
|
+
"4":
|
231
|
+
name: punctuation.definition.string.end.tm-grammar
|
232
|
+
match: (')(?:((?:source|text)(?='|\.)[^']*)|([^']*))(')
|
233
|
+
- name: string.quoted.double.scope.root.tm-grammar
|
234
|
+
captures:
|
235
|
+
"1":
|
236
|
+
name: punctuation.definition.string.begin.tm-grammar
|
237
|
+
"2":
|
238
|
+
name: constant.other.scope.tm-grammar
|
239
|
+
"3":
|
240
|
+
name: invalid.deprecated.scope_not_allowed.tm-grammar
|
241
|
+
"4":
|
242
|
+
name: punctuation.definition.string.end.tm-grammar
|
243
|
+
match: (")(?:((?:source|text)(?="|\.)[^"]*)|([^"]*))(")
|
244
|
+
patterns:
|
245
|
+
name: meta.array.patterns.tm-grammar
|
246
|
+
endCaptures:
|
247
|
+
"1":
|
248
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
249
|
+
begin: \b(patterns)\s*(=)
|
250
|
+
beginCaptures:
|
251
|
+
"1":
|
252
|
+
name: support.constant.tm-grammar
|
253
|
+
"2":
|
254
|
+
name: punctuation.separator.key-value.tm-grammar
|
255
|
+
end: (;)
|
256
|
+
patterns:
|
257
|
+
- include: "#comment"
|
258
|
+
- captures:
|
259
|
+
"1":
|
260
|
+
name: punctuation.section.array.tm-grammar
|
261
|
+
begin: (\()
|
262
|
+
end: (\))
|
263
|
+
patterns:
|
264
|
+
- include: "#comment"
|
265
|
+
- endCaptures:
|
266
|
+
"1":
|
267
|
+
name: punctuation.separator.array.tm-grammar
|
268
|
+
begin: (?=[^\s,])
|
269
|
+
end: (,)|(?=\))
|
270
|
+
patterns:
|
271
|
+
- include: "#comment"
|
272
|
+
- match: \s+(?=//|/\*)
|
273
|
+
- name: invalid.illegal.missing-comma.tm-grammar
|
274
|
+
begin: "[[^\\n]&&\\s](?!\\s*(,|\\)|$)).*"
|
275
|
+
end: ^$not possible$^
|
276
|
+
- include: "#rule"
|
277
|
+
- include: "#catch-all"
|
278
|
+
- include: "#catch-all"
|
279
|
+
- include: "#catch-all"
|
280
|
+
array:
|
281
|
+
captures:
|
282
|
+
"1":
|
283
|
+
name: punctuation.section.array.tm-grammar
|
284
|
+
begin: (\()
|
285
|
+
end: (\))
|
286
|
+
patterns:
|
287
|
+
- include: "#comment"
|
288
|
+
- endCaptures:
|
289
|
+
"1":
|
290
|
+
name: punctuation.separator.array.tm-grammar
|
291
|
+
begin: (?=[^\s,])
|
292
|
+
end: (,)|(?=\))
|
293
|
+
patterns:
|
294
|
+
- include: "#comment"
|
295
|
+
- match: \s+(?=//|/\*)
|
296
|
+
- name: invalid.illegal.missing-comma.tm-grammar
|
297
|
+
begin: "[[^\\n]&&\\s](?!\\s*(,|\\)|$)).*"
|
298
|
+
end: ^$not possible$^
|
299
|
+
- include: "#any"
|
300
|
+
- include: "#catch-all"
|
301
|
+
comment-keyword:
|
302
|
+
endCaptures:
|
303
|
+
"1":
|
304
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
305
|
+
begin: \b(comment)\s*(=)
|
306
|
+
beginCaptures:
|
307
|
+
"1":
|
308
|
+
name: support.constant.tm-grammar
|
309
|
+
"2":
|
310
|
+
name: punctuation.separator.key-value.tm-grammar
|
311
|
+
end: (;)
|
312
|
+
patterns:
|
313
|
+
- include: "#comment"
|
314
|
+
- name: string.quoted.single.tm-grammar
|
315
|
+
endCaptures:
|
316
|
+
"1":
|
317
|
+
name: punctuation.definition.string.end.tm-grammar
|
318
|
+
begin: (')
|
319
|
+
applyEndPatternLast: 1
|
320
|
+
contentName: comment.block.string.tm-grammar
|
321
|
+
beginCaptures:
|
322
|
+
"1":
|
323
|
+
name: punctuation.definition.string.begin.tm-grammar
|
324
|
+
end: (')(?!')
|
325
|
+
patterns:
|
326
|
+
- name: constant.character.escape.apostrophe.tm-grammar
|
327
|
+
match: "''"
|
328
|
+
- name: string.quoted.double.tm-grammar
|
329
|
+
endCaptures:
|
330
|
+
"1":
|
331
|
+
name: punctuation.definition.string.end.tm-grammar
|
332
|
+
begin: (")
|
333
|
+
contentName: comment.block.string.tm-grammar
|
334
|
+
beginCaptures:
|
335
|
+
"1":
|
336
|
+
name: punctuation.definition.string.begin.tm-grammar
|
337
|
+
end: (")
|
338
|
+
patterns:
|
339
|
+
- name: constant.character.escape.tm-grammar
|
340
|
+
match: \\[\\"]
|
341
|
+
- include: "#catch-all"
|
342
|
+
comment:
|
343
|
+
patterns:
|
344
|
+
- name: comment.block.tm-grammar
|
345
|
+
begin: /\*
|
346
|
+
end: \*/
|
347
|
+
- name: comment.line.double-slash.tm-grammar
|
348
|
+
match: //.*$\n?
|
349
|
+
string:
|
350
|
+
patterns:
|
351
|
+
- name: constant.numeric.tm-grammar
|
352
|
+
match: \b[0-9]+\b
|
353
|
+
- name: string.unquoted.tm-grammar
|
354
|
+
match: "[-a-zA-Z0-9_.]+"
|
355
|
+
- name: string.quoted.single.tm-grammar
|
356
|
+
endCaptures:
|
357
|
+
"1":
|
358
|
+
name: punctuation.definition.string.end.tm-grammar
|
359
|
+
begin: (')
|
360
|
+
applyEndPatternLast: 1
|
361
|
+
beginCaptures:
|
362
|
+
"1":
|
363
|
+
name: punctuation.definition.string.begin.tm-grammar
|
364
|
+
end: ('(?!'))
|
365
|
+
patterns:
|
366
|
+
- name: constant.character.escape.apostrophe.tm-grammar
|
367
|
+
match: "''"
|
368
|
+
- name: string.quoted.double.tm-grammar
|
369
|
+
endCaptures:
|
370
|
+
"1":
|
371
|
+
name: punctuation.definition.string.end.tm-grammar
|
372
|
+
begin: (")
|
373
|
+
beginCaptures:
|
374
|
+
"1":
|
375
|
+
name: punctuation.definition.string.begin.tm-grammar
|
376
|
+
end: (")
|
377
|
+
patterns:
|
378
|
+
- name: constant.character.escape.tm-grammar
|
379
|
+
match: \\[\\"]
|
380
|
+
rule:
|
381
|
+
name: meta.dictionary.rule.tm-grammar
|
382
|
+
captures:
|
383
|
+
"1":
|
384
|
+
name: punctuation.section.dictionary.tm-grammar
|
385
|
+
begin: (\{)
|
386
|
+
end: (\})
|
387
|
+
patterns:
|
388
|
+
- include: "#comment"
|
389
|
+
- name: meta.value-pair.tm-grammar
|
390
|
+
endCaptures:
|
391
|
+
"1":
|
392
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
393
|
+
begin: \b((contentN|n)ame)\s*(=)
|
394
|
+
beginCaptures:
|
395
|
+
"1":
|
396
|
+
name: support.constant.tm-grammar
|
397
|
+
"3":
|
398
|
+
name: punctuation.separator.key-value.tm-grammar
|
399
|
+
end: (;)
|
400
|
+
patterns:
|
401
|
+
- include: "#comment"
|
402
|
+
- include: "#scope"
|
403
|
+
- include: "#catch-all"
|
404
|
+
comment: name, contentName
|
405
|
+
- endCaptures:
|
406
|
+
"1":
|
407
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
408
|
+
begin: \b(begin|end|while|match)\s*(=)
|
409
|
+
beginCaptures:
|
410
|
+
"1":
|
411
|
+
name: support.constant.tm-grammar
|
412
|
+
"2":
|
413
|
+
name: punctuation.separator.key-value.tm-grammar
|
414
|
+
end: (;)
|
415
|
+
patterns:
|
416
|
+
- include: "#comment"
|
417
|
+
- include: "#regexp"
|
418
|
+
- include: "#catch-all"
|
419
|
+
comment: begin, end, while, match
|
420
|
+
- endCaptures:
|
421
|
+
"1":
|
422
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
423
|
+
begin: \b(include)\s*(=)
|
424
|
+
beginCaptures:
|
425
|
+
"1":
|
426
|
+
name: support.constant.tm-grammar
|
427
|
+
"2":
|
428
|
+
name: punctuation.separator.key-value.tm-grammar
|
429
|
+
end: (;)
|
430
|
+
patterns:
|
431
|
+
- include: "#comment"
|
432
|
+
- name: string.quoted.single.include.tm-grammar
|
433
|
+
captures:
|
434
|
+
"6":
|
435
|
+
name: punctuation.definition.string.end.tm-grammar
|
436
|
+
"1":
|
437
|
+
name: punctuation.definition.string.begin.tm-grammar
|
438
|
+
"2":
|
439
|
+
name: constant.other.reference.repository-item.tm-grammar
|
440
|
+
"3":
|
441
|
+
name: punctuation.definition.constant.tm-grammar
|
442
|
+
"4":
|
443
|
+
name: constant.other.reference.grammar.tm-grammar
|
444
|
+
"5":
|
445
|
+
name: punctuation.definition.constant.tm-grammar
|
446
|
+
match: (')(?:((#)[-a-zA-Z0-9._]+)|((\$)(?:base|self)))?(')
|
447
|
+
- name: string.quoted.double.include.tm-grammar
|
448
|
+
captures:
|
449
|
+
"6":
|
450
|
+
name: punctuation.definition.string.end.tm-grammar
|
451
|
+
"1":
|
452
|
+
name: punctuation.definition.string.begin.tm-grammar
|
453
|
+
"2":
|
454
|
+
name: constant.other.reference.repository-item.tm-grammar
|
455
|
+
"3":
|
456
|
+
name: punctuation.definition..tm-grammar
|
457
|
+
"4":
|
458
|
+
name: constant.other.reference.grammar.tm-grammar
|
459
|
+
"5":
|
460
|
+
name: punctuation.definition..tm-grammar
|
461
|
+
match: (')(?:((#)[-a-zA-Z0-9._]+)|((\$)(?:base|self)))?(')
|
462
|
+
- include: "#scope-root"
|
463
|
+
- include: "#catch-all"
|
464
|
+
comment: include
|
465
|
+
- name: meta.dictionary.captures.tm-grammar
|
466
|
+
endCaptures:
|
467
|
+
"1":
|
468
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
469
|
+
begin: \b((beginC|endC|whileC|c)aptures)\s*(=)
|
470
|
+
beginCaptures:
|
471
|
+
"1":
|
472
|
+
name: support.constant.tm-grammar
|
473
|
+
"3":
|
474
|
+
name: punctuation.separator.key-value.tm-grammar
|
475
|
+
end: (;)
|
476
|
+
patterns:
|
477
|
+
- captures:
|
478
|
+
"1":
|
479
|
+
name: punctuation.section.dictionary.tm-grammar
|
480
|
+
begin: (\{)
|
481
|
+
end: (\})
|
482
|
+
patterns:
|
483
|
+
- include: "#comment"
|
484
|
+
- include: "#string"
|
485
|
+
- endCaptures:
|
486
|
+
"1":
|
487
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
488
|
+
begin: (=)
|
489
|
+
beginCaptures:
|
490
|
+
"1":
|
491
|
+
name: punctuation.separator.key-value.tm-grammar
|
492
|
+
end: (;)
|
493
|
+
patterns:
|
494
|
+
- include: "#comment"
|
495
|
+
- captures:
|
496
|
+
"1":
|
497
|
+
name: punctuation.section.dictionary.tm-grammar
|
498
|
+
begin: (\{)
|
499
|
+
end: (\})
|
500
|
+
patterns:
|
501
|
+
- include: "#comment"
|
502
|
+
- include: "#comment-keyword"
|
503
|
+
- name: meta.value-pair.tm-grammar
|
504
|
+
endCaptures:
|
505
|
+
"1":
|
506
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
507
|
+
begin: \b(name)\s*(=)
|
508
|
+
beginCaptures:
|
509
|
+
"1":
|
510
|
+
name: support.constant.tm-grammar
|
511
|
+
"2":
|
512
|
+
name: punctuation.separator.key-value.tm-grammar
|
513
|
+
end: (;)
|
514
|
+
patterns:
|
515
|
+
- include: "#comment"
|
516
|
+
- include: "#scope"
|
517
|
+
- include: "#catch-all"
|
518
|
+
comment: name
|
519
|
+
- include: "#catch-all"
|
520
|
+
- name: punctuation.terminator.dictionary.tm-grammar
|
521
|
+
match: ;
|
522
|
+
- include: "#catch-all"
|
523
|
+
comment: captures
|
524
|
+
- captures:
|
525
|
+
"6":
|
526
|
+
name: constant.numeric.tm-grammar
|
527
|
+
"11":
|
528
|
+
name: punctuation.definition.string.end.tm-grammar
|
529
|
+
"7":
|
530
|
+
name: punctuation.definition.string.end.tm-grammar
|
531
|
+
"12":
|
532
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
533
|
+
"8":
|
534
|
+
name: string.quoted.single.tm-grammar
|
535
|
+
"9":
|
536
|
+
name: punctuation.definition.string.begin.tm-grammar
|
537
|
+
"1":
|
538
|
+
name: support.constant.tm-grammar
|
539
|
+
"2":
|
540
|
+
name: punctuation.separator.key-value.tm-grammar
|
541
|
+
"3":
|
542
|
+
name: constant.numeric.tm-grammar
|
543
|
+
"4":
|
544
|
+
name: string.quoted.double.tm-grammar
|
545
|
+
"10":
|
546
|
+
name: constant.numeric.tm-grammar
|
547
|
+
"5":
|
548
|
+
name: punctuation.definition.string.begin.tm-grammar
|
549
|
+
match: \b(disabled|applyEndPatternLast)\s*(=)\s*(?:(0|1)|((")(0|1)("))|((')(0|1)(')))\s*(;)
|
550
|
+
comment: disabled, applyEndPatternLast
|
551
|
+
- include: "#patterns"
|
552
|
+
- include: "#comment-keyword"
|
553
|
+
- include: "#invalid-keyword"
|
554
|
+
- include: "#string"
|
555
|
+
- endCaptures:
|
556
|
+
"1":
|
557
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
558
|
+
begin: (=)
|
559
|
+
beginCaptures:
|
560
|
+
"1":
|
561
|
+
name: punctuation.separator.key-value.tm-grammar
|
562
|
+
end: (;)
|
563
|
+
patterns:
|
564
|
+
- include: "#any"
|
565
|
+
- name: punctuation.terminator.dictionary.tm-grammar
|
566
|
+
match: ;
|
567
|
+
- include: "#catch-all"
|
568
|
+
uuid: 101D6FC2-6CBD-11D9-B329-000D93347A42
|
569
|
+
foldingStartMarker: ^\s*([a-zA-Z_-]+ = )?[{(](?!.*[)}][;,]?\s*$)
|
570
|
+
patterns:
|
571
|
+
- captures:
|
572
|
+
"1":
|
573
|
+
name: punctuation.section.dictionary.tm-grammar
|
574
|
+
begin: (\{)
|
575
|
+
end: (\})
|
576
|
+
patterns:
|
577
|
+
- include: "#comment"
|
578
|
+
- name: meta.value-pair.scopename.tm-grammar
|
579
|
+
endCaptures:
|
580
|
+
"1":
|
581
|
+
name: punctuation.section.dictionary.tm-grammar
|
582
|
+
begin: \b(scopeName)\s*(=)
|
583
|
+
beginCaptures:
|
584
|
+
"1":
|
585
|
+
name: support.constant.tm-grammar
|
586
|
+
"2":
|
587
|
+
name: punctuation.section.dictionary.tm-grammar
|
588
|
+
end: (;)
|
589
|
+
patterns:
|
590
|
+
- include: "#comment"
|
591
|
+
- include: "#scope-root"
|
592
|
+
- include: "#catch-all"
|
593
|
+
comment: scopeName
|
594
|
+
- endCaptures:
|
595
|
+
"1":
|
596
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
597
|
+
begin: \b(fileTypes)\s*(=)
|
598
|
+
beginCaptures:
|
599
|
+
"1":
|
600
|
+
name: support.constant.tm-grammar
|
601
|
+
"2":
|
602
|
+
name: punctuation.separator.key-value.tm-grammar
|
603
|
+
end: (;)
|
604
|
+
patterns:
|
605
|
+
- captures:
|
606
|
+
"1":
|
607
|
+
name: punctuation.section.array.tm-grammar
|
608
|
+
begin: (\()
|
609
|
+
end: (\))
|
610
|
+
patterns:
|
611
|
+
- include: "#comment"
|
612
|
+
- endCaptures:
|
613
|
+
"1":
|
614
|
+
name: punctuation.separator.array.tm-grammar
|
615
|
+
begin: (?=[^\s,])
|
616
|
+
end: (,)|(?=\))
|
617
|
+
patterns:
|
618
|
+
- include: "#comment"
|
619
|
+
- match: \s+(?=//|/\*)
|
620
|
+
- name: invalid.illegal.missing-comma.tm-grammar
|
621
|
+
begin: "[[^\\n]&&\\s](?!\\s*(,|\\)|$)).*"
|
622
|
+
end: ^$not possible$^
|
623
|
+
- include: "#string"
|
624
|
+
- include: "#catch-all"
|
625
|
+
comment: fileTypes
|
626
|
+
- endCaptures:
|
627
|
+
"1":
|
628
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
629
|
+
begin: \b(firstLineMatch|folding(Start|Stop)Marker)\s*(=)
|
630
|
+
beginCaptures:
|
631
|
+
"1":
|
632
|
+
name: support.constant.tm-grammar
|
633
|
+
"3":
|
634
|
+
name: punctuation.separator.key-value.tm-grammar
|
635
|
+
end: (;)
|
636
|
+
patterns:
|
637
|
+
- include: "#comment"
|
638
|
+
- include: "#regexp"
|
639
|
+
- include: "#catch-all"
|
640
|
+
comment: firstLineMatch, foldingStartMarker, foldingStopMarker
|
641
|
+
- include: "#patterns"
|
642
|
+
- name: meta.dictionary.repository.tm-grammar
|
643
|
+
endCaptures:
|
644
|
+
"1":
|
645
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
646
|
+
begin: \b(repository)\s*(=)
|
647
|
+
beginCaptures:
|
648
|
+
"1":
|
649
|
+
name: support.constant.repository.tm-grammar
|
650
|
+
"2":
|
651
|
+
name: punctuation.separator.key-value.tm-grammar
|
652
|
+
end: (;)
|
653
|
+
patterns:
|
654
|
+
- captures:
|
655
|
+
"1":
|
656
|
+
name: punctuation.section.dictionary.tm-grammar
|
657
|
+
begin: (\{)
|
658
|
+
end: (\})
|
659
|
+
patterns:
|
660
|
+
- include: "#comment"
|
661
|
+
- name: meta.value-pair.repository-item.tm-grammar
|
662
|
+
endCaptures:
|
663
|
+
"1":
|
664
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
665
|
+
begin: (["']?)([-a-zA-Z0-9._]+)\1\s*(=)
|
666
|
+
beginCaptures:
|
667
|
+
"2":
|
668
|
+
name: entity.name.section.repository.tm-grammar
|
669
|
+
"3":
|
670
|
+
name: punctuation.separator.key-value.tm-grammar
|
671
|
+
end: (;)
|
672
|
+
patterns:
|
673
|
+
- include: "#comment"
|
674
|
+
- include: "#rule"
|
675
|
+
- include: "#catch-all"
|
676
|
+
- include: "#string"
|
677
|
+
- endCaptures:
|
678
|
+
"1":
|
679
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
680
|
+
begin: (=)
|
681
|
+
beginCaptures:
|
682
|
+
"1":
|
683
|
+
name: punctuation.separator.key-value.tm-grammar
|
684
|
+
end: (;)
|
685
|
+
patterns:
|
686
|
+
- include: "#any"
|
687
|
+
- name: punctuation.terminator.dictionary.tm-grammar
|
688
|
+
match: ;
|
689
|
+
- include: "#catch-all"
|
690
|
+
comment: repository
|
691
|
+
- include: "#comment-keyword"
|
692
|
+
- include: "#invalid-keyword"
|
693
|
+
- include: "#string"
|
694
|
+
- endCaptures:
|
695
|
+
"1":
|
696
|
+
name: punctuation.terminator.dictionary.tm-grammar
|
697
|
+
begin: (=)
|
698
|
+
beginCaptures:
|
699
|
+
"1":
|
700
|
+
name: punctuation.separator.key-value.tm-grammar
|
701
|
+
end: (;)
|
702
|
+
patterns:
|
703
|
+
- include: "#any"
|
704
|
+
- name: punctuation.terminator.dictionary.tm-grammar
|
705
|
+
match: ;
|
706
|
+
- include: "#catch-all"
|
707
|
+
foldingStopMarker: ^\s*(\}|\))
|
708
|
+
keyEquivalent: ^~L
|