mirror of
https://github.com/kennethreitz-archive/kJS.tmbundle.git
synced 2026-06-05 23:50:19 +00:00
077f0e465c
git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/JavaScript.tmbundle@2447 dfb7d73b-c2ec-0310-8fea-fb051d288c6d
246 lines
12 KiB
Plaintext
246 lines
12 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>comment</key>
|
|
<string>JavaScript Syntax: version 2.0</string>
|
|
<key>fileTypes</key>
|
|
<array>
|
|
<string>js</string>
|
|
<string>htc</string>
|
|
</array>
|
|
<key>foldingStartMarker</key>
|
|
<string>^.*\bfunction\s*(\w+\s*)?\([^\)]*\)(\s*\{[^\}]*)?\s*$</string>
|
|
<key>foldingStopMarker</key>
|
|
<string>^\s*\}</string>
|
|
<key>keyEquivalent</key>
|
|
<string>~^J</string>
|
|
<key>name</key>
|
|
<string>JavaScript</string>
|
|
<key>patterns</key>
|
|
<array>
|
|
<dict>
|
|
<key>captures</key>
|
|
<dict>
|
|
<key>1</key>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>storage.type.function.js</string>
|
|
</dict>
|
|
<key>2</key>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>entity.name.function.js</string>
|
|
</dict>
|
|
<key>3</key>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>variable.parameter.function.js</string>
|
|
</dict>
|
|
</dict>
|
|
<key>match</key>
|
|
<string>\b(function)\s+([a-zA-Z_$]\w*)?\s*\((.*?)\)</string>
|
|
<key>name</key>
|
|
<string>meta.function.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>captures</key>
|
|
<dict>
|
|
<key>1</key>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>entity.name.function.js</string>
|
|
</dict>
|
|
<key>2</key>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>storage.type.function.js</string>
|
|
</dict>
|
|
<key>3</key>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>variable.parameter.function.js</string>
|
|
</dict>
|
|
</dict>
|
|
<key>comment</key>
|
|
<string>match stuff like: Sound.prototype.play = function() { … }</string>
|
|
<key>match</key>
|
|
<string>\b([a-zA-Z_?\.$]+\w*)\s+=\s+\b(function)?\s*\((.*?)\)</string>
|
|
<key>name</key>
|
|
<string>meta.function.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b((0(x|X)[0-9a-fA-F]+)|([0-9]+(\.[0-9]+)?))\b</string>
|
|
<key>name</key>
|
|
<string>constant.numeric.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>begin</key>
|
|
<string>'</string>
|
|
<key>end</key>
|
|
<string>'</string>
|
|
<key>name</key>
|
|
<string>string.quoted.single.js</string>
|
|
<key>swallow</key>
|
|
<string>\\.</string>
|
|
</dict>
|
|
<dict>
|
|
<key>begin</key>
|
|
<string>"</string>
|
|
<key>end</key>
|
|
<string>"</string>
|
|
<key>name</key>
|
|
<string>string.quoted.double.js</string>
|
|
<key>swallow</key>
|
|
<string>\\.</string>
|
|
</dict>
|
|
<dict>
|
|
<key>begin</key>
|
|
<string>/\*</string>
|
|
<key>end</key>
|
|
<string>\*/</string>
|
|
<key>name</key>
|
|
<string>comment.block.js</string>
|
|
<key>swallow</key>
|
|
<string>\\.</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>//.*$</string>
|
|
<key>name</key>
|
|
<string>comment.line.double-slash.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>(<!--|-->)</string>
|
|
<key>name</key>
|
|
<string>comment.block.html.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(boolean|byte|char|class|double|enum|float|function|int|interface|long|short|var|void)\b</string>
|
|
<key>name</key>
|
|
<string>storage.type.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(const|export|extends|final|implements|native|private|protected|public|static|synchronized|throws|transient|volatile)\b</string>
|
|
<key>name</key>
|
|
<string>storage.modifier.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(break|case|catch|continue|default|do|else|finally|for|goto|if|import|package|return|switch|throw|try|while)\b</string>
|
|
<key>name</key>
|
|
<string>keyword.control.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(delete|in|instanceof|new|typeof|with)\b</string>
|
|
<key>name</key>
|
|
<string>keyword.operator.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(false|null|super|this|true)\b</string>
|
|
<key>name</key>
|
|
<string>constant.language.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(debugger)\b</string>
|
|
<key>name</key>
|
|
<string>keyword.other.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(Anchor|Applet|Area|Array|Boolean|Button|Checkbox|Date|document|event|FileUpload|Form|Frame|Function|Hidden|History|Image|JavaArray|JavaClass|JavaObject|JavaPackage|java|Layer|Link|Location|Math|MimeType|Number|navigator|netscape|Object|Option|Packages|Password|Plugin|Radio|RegExp|Reset|Select|String|Style|Submit|screen|sun|Text|Textarea|window|XMLHttpRequest)\b</string>
|
|
<key>name</key>
|
|
<string>support.class.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(abort|abs|acos|alert|anchor|apply|asin|atan|atan2|atob|attachEvent|back|big|blink|blur|bold|borderWidths|btoa|call|captureEvents|ceil|charAt|charCodeAt|clear|clearInterval|clearTimeout|click|compile|concat|confirm|contextual|cos|createEventObject|createPopup|createStyleSheet|detachEvent|disableExternalCapture|dump|elementFromPoint|enableExternalCapture|escape|eval|exec|execCommand|execScript|exp|fileCreatedDate|fileModifiedDate|fileSize|fileUpdatedDate|find|fixed|floor|focus|fontcolor|fontsize|fromCharCode|forward|getAllResponseHeaders|getAttention|getDate|getDay|getFullYear|getHours|getMilliseconds|getMinutes|getMonth|getResponseHeader|getSeconds|getSelection|getTime|getTimezoneOffset|getUTCDate|getUTCDay|getUTCFullYear|getUTCHours|getUTCMilliseconds|getUTCMinutes|getUTCMonth|getUTCSeconds|getYear|go|handleEvent|home|indexOf|isFinite|isNaN|italics|javaEnabled|join|lastIndexOf|link|load|log|margins|match|max|mergeAttributes|min|moveAbove|moveBelow|moveBy|moveTo|moveToAbsolute|navigate|paddings|parse|parseFloat|parseInt|plugins.refresh|pop|pow|preference|print|prompt|push|queryCommandEnabled|queryCommandIndeterm|queryCommandState|queryCommandValue|random|recalc|releaseCapture|releaseEvents|reload|replace|reset|resizeBy|resizeTo|returnValue|reverse|round|routeEvents|savePreferences|scroll|scrollBy|scrollByLines|scrollByPages|scrollTo|scrollX|scrollY|search|select|send|setDate|setFullYear|setActive|setCursor|setHotKeys|setHours|setInterval|setMilliseconds|setMinutes|setMonth|setResizable|setRequestHeader|setSeconds|setTime|setTimeout|setUTCDate|setUTCFullYear|setUTCHours|setUTCMilliseconds|setUTCMinutes|setUTCMonth|setUTCSeconds|setYear|setZOptions|shift|showHelp|showModalDialog|showModelessDialog|sidebar|sin|signText|sizeToContent|slice|small|sort|splice|split|sqrt|strike|stop|sub|submit|substr|substring|sup|taint|taintEnabled|tan|test|toGMTString|toLocaleString|toLowerCase|toSource|toString|toUpperCase|toUTCString|UTC|unescape|unshift|untaint|updateCommands|unwatch|valueOf|watch)\b(?=\()</string>
|
|
<key>name</key>
|
|
<string>support.function.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(appendChild|appendData|cloneNode|close|createAttribute|createCDATASection|createComment|createDocumentFragment|createElement|createEntityReference|createTextNode|createProcessingInstruction|deleteData|getElementById|getElementsByName|getElementsByTagName|getAttributeNode|getAttribute|getNamedItem|insertBefore|insertData|item|hasChildNodes|hasFeature|namedItem|open|removeAttributeNode|removeAttribute|removeChild|removeNamedItem|replaceChild|replaceData|setAttributeNode|setAttribute|setNamedItem|splitText|substringData|write|writeln)\b(?=\()</string>
|
|
<key>name</key>
|
|
<string>support.function.dom.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>captures</key>
|
|
<dict>
|
|
<key>1</key>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>support.constant.js</string>
|
|
</dict>
|
|
</dict>
|
|
<key>match</key>
|
|
<string>\.\b(_content|above|action|align|aLinkcolor|all|appCodeName|appCore|appMinorVersion|appName|appVersion|arguments|arity|availHeight|availLeft|availTop|availWidth|backgroundColor|backgroundImage|below|borderBottomWidth|borderColor|borderLeftWidth|borderRightWidth|borderStyle|borderTopWidth|border|bottom|bufferDepth|callee|caller|characterSet|checked|classes|clientInformation|clipboardData|clip|closed|colorDepth|complete|components|constructor|controllers|cookieEnabled|cpuClass|crypto|current|defaultCharset|defaultChecked|defaultStatus|defaultValue|defaultView|description|dialogArguments|dialogHeight|dialogLeft|dialogTop|dialogWidth|directories|display|E|elements|embeds|enabledPlugin|encoding|expando|external|fgColor|filename|fontFamily|fontSize|fontWeight|formName|frameElement|frames|global|hasFocus|hash|height|history|hostname|host|hspace|ids|ignoreCase|input|innerHeight|innerWidth|index|LN10|LN2|LOG10E|LOG2E|language|lastIndex|lastMatch|lastModified|lastParen|layers|layerX|leftContext|left|length|lineHeight|linkColor|listStyleType|localName|locationbar|location|lowsrc|MAX_VALUE|MIN_VALUE|marginBottom|marginLeft|marginRight|marginTop|method|menubar|mimeTypes|multiline|NEGATIVE_INFINITY|nameProp|namespaces|namespaceURI|next|offscreenBuffering|onLine|onreadystatechange|opener|opsProfile|oscpu|options|outerHeight|outerWidth|POSITIVE_INFINITY|PI|paddingBottom|paddingLeft|paddingRight|paddingTop|pageXOffset|pageYOffset|pageX|pageY|parentLayer|parentWindow|parent|pathname|personalbar|pixelDepth|platform|plugins|pkcs11|port|prefix|previous|productSub|product|prompter|protocol|prototype|readyState|responseText|responseXML|rightContext|right|SQRT1_2|SQRT2|screenLeft|screenTop|screenX|screenY|scripts|scrollbars|securityPolicy|security|selectedIndex|selected|selection|self|siblingAbove|siblingBelow|src|source|statusbar|statusText|status|style|styleSheets|suffixes|systemLanguage|tags|textAlign|textDecoration|textIndent|textTransform|toolbar|top|URLUnencoded|undefined|uniqueID|updateInterval|userAgent|userLanguage|userProfile|vendorSub|vendor|visibility|vLinkcolor|vspace|whiteSpace|width|XMLDocument|XSLDocument|x|y|zIndex)\b</string>
|
|
</dict>
|
|
<dict>
|
|
<key>captures</key>
|
|
<dict>
|
|
<key>1</key>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>support.constant.dom.js</string>
|
|
</dict>
|
|
</dict>
|
|
<key>match</key>
|
|
<string>\.\b(aLink|anchors|applets|attributes|background|bgColor|body|charset|childNodes|className|content|cookie|data|dir|disabled|doctype|documentElement|domain|entities|firstChild|form|forms|href|hreflang|httpEquiv|id|images|implementation|lang|lastChild|links|media|name|nextSibling|nodeName|nodeType|nodeValue|notationName|notations|ownerDocument|parentNode|previousSibling|profile|publicId|rel|referrer|rev|scheme|specified|systemId|tagName|target|text|title|type|URL|value|version)\b</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(ELEMENT_NODE|ATTRIBUTE_NODE|TEXT_NODE|CDATA_SECTION_NODE|ENTITY_REFERENCE_NODE|ENTITY_NODE|PROCESSING_INSTRUCTION_NODE|COMMENT_NODE|DOCUMENT_NODE|DOCUMENT_TYPE_NODE|DOCUMENT_FRAGMENT_NODE|NOTATION_NODE|INDEX_SIZE_ERR|DOMSTRING_SIZE_ERR|HIERARCHY_REQUEST_ERR|WRONG_DOCUMENT_ERR|INVALID_CHARACTER_ERR|NO_DATA_ALLOWED_ERR|NO_MODIFICATION_ALLOWED_ERR|NOT_FOUND_ERR|NOT_SUPPORTED_ERR|INUSE_ATTRIBUTE_ERR)\b</string>
|
|
<key>name</key>
|
|
<string>support.constant.dom.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(onAbort|onActivate|onAfterprint|onAfterupdate|onBeforeactivate|onBeforecut|onBeforedeactivate|onBeforeeditfocus|onBeforepaste|onBeforeprint|onBeforeunload|onBeforeupdate|onBlur|onCellchange|onChange|onClick|onClose|onContextmenu|onControlselect|onCut|onDataavailable|onDatasetchanged|onDatasetcomplete|onDblclick|onDeactivate|onDrag|onDragdrop|onDragend|onDragenter|onDragleave|onDragover|onDragstart|onDrop|onError|onErrorupdate|onFocus|onHelp|onKeydown|onKeypress|onKeyup|onLoad|onMousedown|onMousemove|onMouseout|onMouseover|onMouseup|onPaste|onPropertychange|onReadystatechange|onReset|onResize|onResizeend|onResizestart|onRowenter|onRowexit|onRowsdelete|onRowsinserted|onScroll|onSelect|onSelectionchange|onSelectstart|onStop|onSubmit|onUnload)\b</string>
|
|
<key>name</key>
|
|
<string>support.function.event-handler.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>!|\$|%|&|\*|\-\-|\-|\+\+|\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\|\||\?\:|\*=|/=|%=|\+=|\-=|&=|\^=|\b(in|instanceof|new|delete|typeof|void)\b</string>
|
|
<key>name</key>
|
|
<string>keyword.operator.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\b(Infinity|NaN|Undefined)\b</string>
|
|
<key>name</key>
|
|
<string>constant.language.js</string>
|
|
</dict>
|
|
<dict>
|
|
<key>begin</key>
|
|
<string>(?<=[=(]|^)\s*/(?![/*+{}?])</string>
|
|
<key>end</key>
|
|
<string>/[igm]*</string>
|
|
<key>name</key>
|
|
<string>string.regexp.js</string>
|
|
<key>patterns</key>
|
|
<array>
|
|
<dict>
|
|
<key>match</key>
|
|
<string>\\.</string>
|
|
<key>name</key>
|
|
<string>constant.character.escape.js</string>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>scopeName</key>
|
|
<string>source.js</string>
|
|
<key>uuid</key>
|
|
<string>93E017CC-6F27-11D9-90EB-000D93589AF6</string>
|
|
</dict>
|
|
</plist>
|