feat(SublimeText2.WebPackages): cache packages
This commit is contained in:
		| @@ -0,0 +1,600 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||||
| <plist version="1.0"> | ||||
| <dict> | ||||
| 	<key>comment</key> | ||||
| 	<string>jQuery Javascript Library. Sublime Text 2 package forked by Zander Martineau from original Textmate bundle by Jonathan Chaffer & Karl Swedberg. Dual licensed under MIT (http://www.opensource.org/licenses/mit-license.php) and GPL (http://www.gnu.org/licenses/gpl.html) licenses.</string> | ||||
| 	<key>fileTypes</key> | ||||
|     <array> | ||||
|        <string>js</string> | ||||
|     </array> | ||||
| 	<key>foldingStartMarker</key> | ||||
| 	<string>(^.*\{[^}]*$|^.*\([^\)]*$|^.*/\*(?!.*\*/).*$)</string> | ||||
| 	<key>foldingStopMarker</key> | ||||
| 	<string>(^\s*\}|^\s*\)|^(?!.*/\*).*\*/)</string> | ||||
| 	<key>keyEquivalent</key> | ||||
| 	<string>^~J</string> | ||||
| 	<key>name</key> | ||||
| 	<string>jQuery (JavaScript)</string> | ||||
| 	<key>patterns</key> | ||||
| 	<array> | ||||
| 		<dict> | ||||
| 			<key>include</key> | ||||
| 			<string>source</string> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>(\$|jQuery)(\((?!('|")<))</string> | ||||
| 			<key>beginCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>support.class.js.jquery</string> | ||||
| 				</dict> | ||||
| 				<key>2</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.class.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>contentName</key> | ||||
| 			<string>meta.selector.jquery</string> | ||||
| 			<key>end</key> | ||||
| 			<string>(\))</string> | ||||
| 			<key>endCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.class.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#nested-parens</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>begin</key> | ||||
| 					<string>'</string> | ||||
| 					<key>beginCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.selector.begin.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>end</key> | ||||
| 					<string>'</string> | ||||
| 					<key>endCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.selector.end.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>patterns</key> | ||||
| 					<array> | ||||
| 						<dict> | ||||
| 							<key>include</key> | ||||
| 							<string>#css-selector</string> | ||||
| 						</dict> | ||||
| 					</array> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>begin</key> | ||||
| 					<string>"</string> | ||||
| 					<key>beginCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.selector.begin.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>end</key> | ||||
| 					<string>"</string> | ||||
| 					<key>endCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.selector.end.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>patterns</key> | ||||
| 					<array> | ||||
| 						<dict> | ||||
| 							<key>include</key> | ||||
| 							<string>#css-selector</string> | ||||
| 						</dict> | ||||
| 					</array> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>source.js</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>\b(add|appendTo|children|closest|detach|filter|find|has|index|insertAfter|insertBefore|is|next|nextAll|nextUntil|not|parent|parents|parentsUntil|prependTo|prev|prevAll|prevUntil|remove|replaceAll|siblings)\s*(\((?!('|")<))</string> | ||||
| 			<key>beginCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>support.function.js.jquery</string> | ||||
| 				</dict> | ||||
| 				<key>2</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.function.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>contentName</key> | ||||
| 			<string>meta.selector.jquery</string> | ||||
| 			<key>end</key> | ||||
| 			<string>(\))</string> | ||||
| 			<key>endCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.function.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#nested-parens</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>begin</key> | ||||
| 					<string>'</string> | ||||
| 					<key>beginCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.selector.begin.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>end</key> | ||||
| 					<string>'</string> | ||||
| 					<key>endCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.selector.end.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>patterns</key> | ||||
| 					<array> | ||||
| 						<dict> | ||||
| 							<key>include</key> | ||||
| 							<string>#css-selector</string> | ||||
| 						</dict> | ||||
| 					</array> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>begin</key> | ||||
| 					<string>"</string> | ||||
| 					<key>beginCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.selector.begin.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>end</key> | ||||
| 					<string>"</string> | ||||
| 					<key>endCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.selector.end.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>patterns</key> | ||||
| 					<array> | ||||
| 						<dict> | ||||
| 							<key>include</key> | ||||
| 							<string>#css-selector</string> | ||||
| 						</dict> | ||||
| 					</array> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>source.js</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>(\$|jQuery)(\((?=('|")<))</string> | ||||
| 			<key>beginCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>support.class.js.jquery</string> | ||||
| 				</dict> | ||||
| 				<key>2</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.class.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>contentName</key> | ||||
| 			<string>meta.markup.jquery</string> | ||||
| 			<key>end</key> | ||||
| 			<string>(\))</string> | ||||
| 			<key>endCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.class.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>begin</key> | ||||
| 					<string>'</string> | ||||
| 					<key>beginCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.markup.begin.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>end</key> | ||||
| 					<string>'</string> | ||||
| 					<key>endCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.markup.end.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>patterns</key> | ||||
| 					<array> | ||||
| 						<dict> | ||||
| 							<key>include</key> | ||||
| 							<string>#html-markup-single</string> | ||||
| 						</dict> | ||||
| 					</array> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>begin</key> | ||||
| 					<string>"</string> | ||||
| 					<key>beginCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.markup.begin.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>end</key> | ||||
| 					<string>"</string> | ||||
| 					<key>endCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.markup.end.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>patterns</key> | ||||
| 					<array> | ||||
| 						<dict> | ||||
| 							<key>include</key> | ||||
| 							<string>#html-markup-double</string> | ||||
| 						</dict> | ||||
| 					</array> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>source.js</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>\b(add|after|append|before|html|prepend|replaceWith|wrap|wrapAll|wrapInner)\s*(\((?=('|")<))</string> | ||||
| 			<key>beginCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>support.function.js.jquery</string> | ||||
| 				</dict> | ||||
| 				<key>2</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.class.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>contentName</key> | ||||
| 			<string>meta.markup.jquery</string> | ||||
| 			<key>end</key> | ||||
| 			<string>(\))</string> | ||||
| 			<key>endCaptures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.class.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>begin</key> | ||||
| 					<string>'</string> | ||||
| 					<key>beginCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.markup.begin.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>end</key> | ||||
| 					<string>'</string> | ||||
| 					<key>endCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.markup.end.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>patterns</key> | ||||
| 					<array> | ||||
| 						<dict> | ||||
| 							<key>include</key> | ||||
| 							<string>#html-markup-single</string> | ||||
| 						</dict> | ||||
| 					</array> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>begin</key> | ||||
| 					<string>"</string> | ||||
| 					<key>beginCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.markup.begin.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>end</key> | ||||
| 					<string>"</string> | ||||
| 					<key>endCaptures</key> | ||||
| 					<dict> | ||||
| 						<key>0</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.markup.end.js</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>patterns</key> | ||||
| 					<array> | ||||
| 						<dict> | ||||
| 							<key>include</key> | ||||
| 							<string>#html-markup-double</string> | ||||
| 						</dict> | ||||
| 					</array> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>source.js</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>support.class.js</string> | ||||
| 				</dict> | ||||
| 				<key>2</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>support.constant.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(\$|jQuery)\.(ajaxSettings|boxModel|browser|fx|isReady|support|fn)</string> | ||||
| 			<key>name</key> | ||||
| 			<string>meta.property.jquery</string> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(?<=\.)(length|selector|context)\b</string> | ||||
| 			<key>name</key> | ||||
| 			<string>support.constant.js.jquery</string> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(?<=\.)(add|addClass|after|ajaxComplete|ajaxError|ajaxSend|ajaxStart|ajaxStop|ajaxSuccess|always|andSelf|animate|append|appendTo|attr|before|bind|blur|change|children|clearQueue|click|clone|closest|contents|css|data|dblclick|delay|delegate|dequeue|detach|disable|disabled|die|domManip|done|each|empty|end|eq|error|fadeIn|fadeOut|fadeTo|fadeToggle|fail|filter|find|first|fire|fired|fireWith|focus|focusin|focusout|get|has|hasClass|height|hide|hover|html|index|innerHeight|innerWidth|insertAfter|insertBefore|is|isRejected|isResolved|keydown|keypress|keyup|last|live|load|lock|locked|map|mousedown|mouseenter|mouseleave|mousemove|mouseout|mouseover|mouseup|next|nextAll|nextUntil|not|notify|notifyWith|off|offset|offsetParent|on|one|outerHeight|outerWidth|parent|parents|parentsUntil|pipe|position|prepend|prependTo|prev|prevAll|prevUntil|progress|promise|prop|pushStack|queue|ready|reject|rejectWith|remove|removeAttr|removeClass|removeData|replaceAll|replaceWith|resize|resolve|resolveWith|scroll|scrollLeft|scrollTop|select|serialize|serializeArray|show|siblings|size|slice|slideDown|slideToggle|slideUp|state|stop|submit|text|then|toArray|toggle|toggleClass|trigger|triggerHandler|unbind|undelegate|unload|unwrap|val|width|wrap|wrapAll|wrapInner)\b</string> | ||||
| 			<key>name</key> | ||||
| 			<string>support.function.js.jquery</string> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>1</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>support.class.js</string> | ||||
| 				</dict> | ||||
| 				<key>3</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>support.function.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>match</key> | ||||
| 			<string>(\$|jQuery)(\.)(Callbacks|Deferred|Event|ajax|ajaxPrefilter|ajaxSetup|ajaxTransport|bindReady|clean|cleanData|contains|css|data|dequeue|each|error|extend|Event|get|getJSON|getScript|globalEval|grep|inArray|isArray|isEmptyObject|isFunction|isNumeric|isPlainObject|isWindow|isXMLDoc|makeArray|map|merge|noConflict|noop|param|parseJSON|parseXML|post|proxy|queue|ready|removeData|sibling|sub|text|triggerGlobal|trim|type|unique|when)\b</string> | ||||
| 			<key>name</key> | ||||
| 			<string>support.function.js.jquery</string> | ||||
| 		</dict> | ||||
| 		<dict> | ||||
| 			<key>include</key> | ||||
| 			<string>source.js</string> | ||||
| 		</dict> | ||||
| 	</array> | ||||
| 	<key>repository</key> | ||||
| 	<dict> | ||||
| 		<key>css-selector</key> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>(?=\s*[.*#a-zA-Z])</string> | ||||
| 			<key>end</key> | ||||
| 			<string>(?=["'])</string> | ||||
| 			<key>name</key> | ||||
| 			<string>meta.selector.css</string> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>match</key> | ||||
| 					<string>\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|command|code|col|colgroup|datalist|dd|del|details|device|dfn|div|dl|dt|em|embed|fieldset|fig(ure|caption)|footer|form|frame|frameset|(h[1-6])|head(er)?|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|menu|meta|meter|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|samp|script|section|select|small|span|strike|strong|style|summary|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\b</string> | ||||
| 					<key>name</key> | ||||
| 					<string>entity.name.tag.css</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>captures</key> | ||||
| 					<dict> | ||||
| 						<key>1</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.attribute-name.css</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>match</key> | ||||
| 					<string>(\.)[a-zA-Z0-9_-]+</string> | ||||
| 					<key>name</key> | ||||
| 					<string>entity.other.attribute-name.class.css</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>captures</key> | ||||
| 					<dict> | ||||
| 						<key>1</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.attribute-name.css</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>match</key> | ||||
| 					<string>(#)[a-zA-Z0-9_-]+</string> | ||||
| 					<key>name</key> | ||||
| 					<string>entity.other.attribute-name.id.css</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>match</key> | ||||
| 					<string>\*</string> | ||||
| 					<key>name</key> | ||||
| 					<string>entity.name.tag.wildcard.css</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>captures</key> | ||||
| 					<dict> | ||||
| 						<key>1</key> | ||||
| 						<dict> | ||||
| 							<key>name</key> | ||||
| 							<string>punctuation.definition.attribute-name.css</string> | ||||
| 						</dict> | ||||
| 					</dict> | ||||
| 					<key>match</key> | ||||
| 					<string>(:)\b(active|after|before|first-letter|first-line|hover|link|target|visited)\b</string> | ||||
| 					<key>name</key> | ||||
| 					<string>entity.other.attribute-name.pseudo-class.css</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<key>html-markup-double</key> | ||||
| 		<dict> | ||||
| 			<key>name</key> | ||||
| 			<string>meta.markup.html</string> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>text.html.basic</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>match</key> | ||||
| 					<string>\\(")</string> | ||||
| 					<key>name</key> | ||||
| 					<string>constant.character.escape.js</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<key>html-markup-single</key> | ||||
| 		<dict> | ||||
| 			<key>name</key> | ||||
| 			<string>meta.markup.html</string> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>text.html.basic</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>match</key> | ||||
| 					<string>\\(')</string> | ||||
| 					<key>name</key> | ||||
| 					<string>constant.character.escape.js</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 		<key>nested-parens</key> | ||||
| 		<dict> | ||||
| 			<key>begin</key> | ||||
| 			<string>\(</string> | ||||
| 			<key>captures</key> | ||||
| 			<dict> | ||||
| 				<key>0</key> | ||||
| 				<dict> | ||||
| 					<key>name</key> | ||||
| 					<string>punctuation.section.scope.js</string> | ||||
| 				</dict> | ||||
| 			</dict> | ||||
| 			<key>end</key> | ||||
| 			<string>\)</string> | ||||
| 			<key>patterns</key> | ||||
| 			<array> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>#nested-parens</string> | ||||
| 				</dict> | ||||
| 				<dict> | ||||
| 					<key>include</key> | ||||
| 					<string>source.js</string> | ||||
| 				</dict> | ||||
| 			</array> | ||||
| 		</dict> | ||||
| 	</dict> | ||||
| 	<key>scopeName</key> | ||||
| 	<string>source.js.jquery</string> | ||||
| 	<key>uuid</key> | ||||
| 	<string>1AD8EB10-62BE-417C-BC4B-29B5C6F0B36A</string> | ||||
| </dict> | ||||
| </plist> | ||||
		Reference in New Issue
	
	Block a user