comparison vendor/vim-syntax/javascript.vim @ 636:8812b9230a68

Merge
author nanaya <me@nanaya.pro>
date Tue, 14 Jan 2020 11:09:50 +0900
parents ced2ee9efd9f
children c548e83e4c57
comparison
equal deleted inserted replaced
635:5d3ce722285a 636:8812b9230a68
1 " Vim syntax file 1 " Vim syntax file
2 " Language: JavaScript 2 " Language: JavaScript
3 " Maintainer: Jose Elera Campana <https://github.com/jelera> 3 " Maintainer: Claudio Fleiner <claudio@fleiner.com>
4 " Last Modified: Wed 24 Feb 2016 03:35:03 AM CST 4 " Updaters: Scott Shattuck (ss) <ss@technicalpursuit.com>
5 " Version: 0.8.2 5 " URL: http://www.fleiner.com/vim/syntax/javascript.vim
6 " Credits: Zhao Yi, Claudio Fleiner, Scott Shattuck (This file is based 6 " Changes: (ss) added keywords, reserved words, and other identifiers
7 " on their hard work), gumnos (From the #vim IRC Channel in 7 " (ss) repaired several quoting and grouping glitches
8 " Freenode), all the contributors at this project's github page 8 " (ss) fixed regex parsing issue with multiple qualifiers [gi]
9 " (https://github.com/jelera/vim-javascript-syntax/graphs/contributors) 9 " (ss) additional factoring of keywords, globals, and members
10 " Last Change: 2019 Sep 27
11 " 2013 Jun 12: adjusted javaScriptRegexpString (Kevin Locke)
12 " 2018 Apr 14: adjusted javaScriptRegexpString (LongJohnCoder)
13
14 " tuning parameters:
15 " unlet javaScript_fold
10 16
11 if !exists("main_syntax") 17 if !exists("main_syntax")
12 if version < 600 18 " quit when a syntax file was already loaded
13 syntax clear 19 if exists("b:current_syntax")
14 elseif exists("b:current_syntax") 20 finish
15 finish 21 endif
16 endif 22 let main_syntax = 'javascript'
17 let main_syntax = 'javascript' 23 elseif exists("b:current_syntax") && b:current_syntax == "javascript"
24 finish
18 endif 25 endif
19 26
20 " Drop fold if it set but vim doesn't support it. 27 let s:cpo_save = &cpo
21 if version < 600 && exists("javaScript_fold") 28 set cpo&vim
22 unlet javaScript_fold 29
30
31 syn keyword javaScriptCommentTodo TODO FIXME XXX TBD contained
32 syn match javaScriptLineComment "\/\/.*" contains=@Spell,javaScriptCommentTodo
33 syn match javaScriptCommentSkip "^[ \t]*\*\($\|[ \t]\+\)"
34 syn region javaScriptComment start="/\*" end="\*/" contains=@Spell,javaScriptCommentTodo
35 syn match javaScriptSpecial "\\\d\d\d\|\\."
36 syn region javaScriptStringD start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=javaScriptSpecial,@htmlPreproc
37 syn region javaScriptStringS start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=javaScriptSpecial,@htmlPreproc
38 syn region javaScriptStringT start=+`+ skip=+\\\\\|\\`+ end=+`+ contains=javaScriptSpecial,javaScriptEmbed,@htmlPreproc
39
40 syn region javaScriptEmbed start=+${+ end=+}+ contains=@javaScriptEmbededExpr
41
42 syn match javaScriptSpecialCharacter "'\\.'"
43 syn match javaScriptNumber "-\=\<\d\+L\=\>\|0[xX][0-9a-fA-F]\+\>"
44 syn region javaScriptRegexpString start=+[,(=+]\s*/[^/*]+ms=e-1,me=e-1 skip=+\\\\\|\\/+ end=+/[gimuys]\{0,2\}\s*$+ end=+/[gimuys]\{0,2\}\s*[+;.,)\]}]+me=e-1 end=+/[gimuys]\{0,2\}\s\+\/+me=e-1 contains=@htmlPreproc,javaScriptComment oneline
45
46 syn keyword javaScriptConditional if else switch
47 syn keyword javaScriptRepeat while for do in
48 syn keyword javaScriptBranch break continue
49 syn keyword javaScriptOperator new delete instanceof typeof
50 syn keyword javaScriptType Array Boolean Date Function Number Object String RegExp
51 syn keyword javaScriptStatement return with await
52 syn keyword javaScriptBoolean true false
53 syn keyword javaScriptNull null undefined
54 syn keyword javaScriptIdentifier arguments this var let
55 syn keyword javaScriptLabel case default
56 syn keyword javaScriptException try catch finally throw
57 syn keyword javaScriptMessage alert confirm prompt status
58 syn keyword javaScriptGlobal self window top parent
59 syn keyword javaScriptMember document event location
60 syn keyword javaScriptDeprecated escape unescape
61 syn keyword javaScriptReserved abstract boolean byte char class const debugger double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized throws transient volatile async
62
63 syn cluster javaScriptEmbededExpr contains=javaScriptBoolean,javaScriptNull,javaScriptIdentifier,javaScriptStringD,javaScriptStringS,javaScriptStringT
64
65 if exists("javaScript_fold")
66 syn match javaScriptFunction "\<function\>"
67 syn region javaScriptFunctionFold start="\<function\>.*[^};]$" end="^\z1}.*$" transparent fold keepend
68
69 syn sync match javaScriptSync grouphere javaScriptFunctionFold "\<function\>"
70 syn sync match javaScriptSync grouphere NONE "^}"
71
72 setlocal foldmethod=syntax
73 setlocal foldtext=getline(v:foldstart)
74 else
75 syn keyword javaScriptFunction function
76 syn match javaScriptBraces "[{}\[\]]"
77 syn match javaScriptParens "[()]"
23 endif 78 endif
24 79
25 "" Remove dollar sign from identifier when embedded in a PHP file 80 syn sync fromstart
26 if &filetype == 'javascript' 81 syn sync maxlines=100
27 setlocal iskeyword+=$ 82
83 if main_syntax == "javascript"
84 syn sync ccomment javaScriptComment
28 endif 85 endif
29 86
30 syntax sync fromstart 87 " Define the default highlighting.
88 " Only when an item doesn't have highlighting yet
89 hi def link javaScriptComment Comment
90 hi def link javaScriptLineComment Comment
91 hi def link javaScriptCommentTodo Todo
92 hi def link javaScriptSpecial Special
93 hi def link javaScriptStringS String
94 hi def link javaScriptStringD String
95 hi def link javaScriptStringT String
96 hi def link javaScriptCharacter Character
97 hi def link javaScriptSpecialCharacter javaScriptSpecial
98 hi def link javaScriptNumber javaScriptValue
99 hi def link javaScriptConditional Conditional
100 hi def link javaScriptRepeat Repeat
101 hi def link javaScriptBranch Conditional
102 hi def link javaScriptOperator Operator
103 hi def link javaScriptType Type
104 hi def link javaScriptStatement Statement
105 hi def link javaScriptFunction Function
106 hi def link javaScriptBraces Function
107 hi def link javaScriptError Error
108 hi def link javaScrParenError javaScriptError
109 hi def link javaScriptNull Keyword
110 hi def link javaScriptBoolean Boolean
111 hi def link javaScriptRegexpString String
31 112
32 "" syntax coloring for Node.js shebang line 113 hi def link javaScriptIdentifier Identifier
33 syntax match shebang "^#!.*" 114 hi def link javaScriptLabel Label
34 hi link shebang Comment 115 hi def link javaScriptException Exception
116 hi def link javaScriptMessage Keyword
117 hi def link javaScriptGlobal Keyword
118 hi def link javaScriptMember Keyword
119 hi def link javaScriptDeprecated Exception
120 hi def link javaScriptReserved Keyword
121 hi def link javaScriptDebug Debug
122 hi def link javaScriptConstant Label
123 hi def link javaScriptEmbed Special
35 124
36 " Statement Keywords {{{
37 syntax keyword javaScriptSource import export from
38 syntax keyword javaScriptIdentifier arguments this let var void yield async await const
39 syntax keyword javaScriptOperator delete new instanceof typeof
40 syntax keyword javaScriptBoolean true false
41 syntax keyword javaScriptNull null undefined
42 syntax keyword javaScriptMessage alert confirm prompt status
43 syntax keyword javaScriptGlobal self top parent
44 syntax keyword javaScriptDeprecated escape unescape all applets alinkColor bgColor fgColor linkColor vlinkColor xmlEncoding
45 syntax keyword javaScriptConditional if else switch
46 syntax keyword javaScriptRepeat do while for in of
47 syntax keyword javaScriptBranch break continue
48 syntax keyword javaScriptLabel case default
49 syntax keyword javaScriptPrototype prototype
50 syntax keyword javaScriptStatement return with
51 syntax keyword javaScriptGlobalObjects Array Boolean Date Function Math Number Object RegExp String
52 syntax keyword javaScriptExceptions try catch throw finally Error EvalError RangeError ReferenceError SyntaxError TypeError URIError
53 syntax keyword javaScriptReserved abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws goto private transient debugger implements protected volatile double import public
54 "}}}
55 " Comments {{{
56 syntax keyword javaScriptCommentTodo TODO FIXME XXX TBD OPTIMIZE HACK REVIEW contained
57 syntax match javaScriptLineComment "\/\/.*" contains=@Spell,javaScriptCommentTodo
58 syntax match javaScriptCommentSkip "^[ \t]*\*\($\|[ \t]\+\)"
59 syntax region javaScriptComment start="/\*" end="\*/" contains=@Spell,javaScriptCommentTodo
60 "}}}
61 " JSDoc support {{{
62 if !exists("javascript_ignore_javaScriptdoc")
63 syntax case ignore
64 125
65 " syntax coloring for JSDoc comments (HTML)
66 "unlet b:current_syntax
67
68 syntax region javaScriptDocComment matchgroup=javaScriptComment start="/\*\*\s*$" end="\*/" contains=javaScriptDocTags,javaScriptCommentTodo,@javaScriptHtml,jsInJsdocExample,@Spell fold
69 syntax match javaScriptDocTags contained "@\(abstract\|access\|alias\|arg\|argument\|augments\|author\|borrows\|callback\|class\|classdesc\|const\|constant\|constructor\|constructs\|copyright\|default\|defaultvalue\|deprecated\|desc\|description\|emits\|enum\|event\|example\|exception\|exports\|extends\|external\|file\|fileoverview\|fires\|func\|function\|global\|host\|ignore\|implements\|inheritdoc\|inner\|instance\|interface\|kind\|lends\|license\|link\|linkcode\|linkplain\|listens\|member\|memberof\|method\|mixes\|mixin\|module\|name\|namespace\|override\|overview\|param\|private\|prop\|property\|cfg\|protected\|public\|readonly\|requires\|return\|returns\|see\|since\|static\|summary\|this\|throws\|todo\|tutorial\|tutorial\|type\|typedef\|var\|variation\|version\|virtual\)\>" nextgroup=javaScriptDocParam,javaScriptDocSeeTag skipwhite
70 syntax match javaScriptDocParam contained "\%(#\|\w\|\.\|:\|\/\)\+"
71 syntax region javaScriptDocSeeTag contained matchgroup=javaScriptDocSeeTag start="{" end="}" contains=javaScriptDocTags
72
73 syntax case match
74 endif
75 syntax case match
76 "}}}
77 " Strings, Numbers and Regex Highlight {{{
78 syntax match javaScriptSpecial "\\\d\d\d\|\\."
79 syntax region javaScriptString start=+"+ skip=+\\\\\|\\"+ end=+"\|$+ contains=javaScriptSpecial,@htmlPreproc
80 syntax region javaScriptString start=+'+ skip=+\\\\\|\\'+ end=+'\|$+ contains=javaScriptSpecial,@htmlPreproc
81
82 syntax match javaScriptSpecialCharacter "'\\.'"
83 syntax match javaScriptNumber "-\=\<\d\+L\=\>\|0[xX][0-9a-fA-F]\+\>"
84 syntax region javaScriptRegexpString start=+/[^/*]+me=e-1 skip=+\\\\\|\\/+ end=+/[gim]\{0,2\}\s*$+ end=+/[gim]\{0,2\}\s*[;.,)\]}]+me=e-1 contains=@htmlPreproc oneline
85 syntax match javaScriptFloat /\<-\=\%(\d\+\.\d\+\|\d\+\.\|\.\d\+\)\%([eE][+-]\=\d\+\)\=\>/
86 "}}}
87 " DOM, Browser and Ajax Support {{{
88 syntax keyword javaScriptBrowserObjects window navigator screen history location console
89
90 syntax keyword javaScriptDOMObjects document event HTMLElement Anchor Area Base Body Button Form Frame Frameset Image Link Meta Option Select Style Table TableCell TableRow Textarea
91 syntax keyword javaScriptDOMMethods createTextNode createElement insertBefore replaceChild removeChild appendChild hasChildNodes cloneNode normalize isSupported hasAttributes getAttribute setAttribute removeAttribute getAttributeNode setAttributeNode removeAttributeNode getElementsByTagName hasAttribute getElementById adoptNode close compareDocumentPosition createAttribute createCDATASection createComment createDocumentFragment createElementNS createEvent createExpression createNSResolver createProcessingInstruction createRange createTreeWalker elementFromPoint evaluate getBoxObjectFor getElementsByClassName getSelection getUserData hasFocus importNode
92 syntax keyword javaScriptDOMProperties nodeName nodeValue nodeType parentNode childNodes firstChild lastChild previousSibling nextSibling attributes ownerDocument namespaceURI prefix localName tagName
93
94 syntax keyword javaScriptAjaxObjects XMLHttpRequest
95 syntax keyword javaScriptAjaxProperties readyState responseText responseXML statusText
96 syntax keyword javaScriptAjaxMethods onreadystatechange abort getAllResponseHeaders getResponseHeader open send setRequestHeader
97
98 syntax keyword javaScriptPropietaryObjects ActiveXObject
99 syntax keyword javaScriptPropietaryMethods attachEvent detachEvent cancelBubble returnValue
100
101 syntax keyword javaScriptHtmlElemProperties className clientHeight clientLeft clientTop clientWidth dir href id innerHTML lang length offsetHeight offsetLeft offsetParent offsetTop offsetWidth scrollHeight scrollLeft scrollTop scrollWidth style tabIndex target title
102
103 syntax keyword javaScriptEventListenerKeywords blur click focus mouseover mouseout load item
104
105 syntax keyword javaScriptEventListenerMethods scrollIntoView addEventListener dispatchEvent removeEventListener preventDefault stopPropagation
106 " }}}
107 " DOM/HTML5/CSS specified things {{{
108 " Web API Interfaces (very long list of keywords) {{{
109 syntax keyword javaScriptWebAPI AbstractWorker AnalyserNode AnimationEvent App Apps ArrayBuffer ArrayBufferView Attr AudioBuffer AudioBufferSourceNode AudioContext AudioDestinationNode AudioListener AudioNode AudioParam AudioProcessingEvent BatteryManager BiquadFilterNode Blob BlobBuilder BlobEvent CallEvent CameraCapabilities CameraControl CameraManager CanvasGradient CanvasImageSource CanvasPattern CanvasPixelArray CanvasRenderingContext2D CaretPosition CDATASection ChannelMergerNode ChannelSplitterNode CharacterData ChildNode ChromeWorker ClipboardEvent CloseEvent Comment CompositionEvent Connection Console ContactManager ConvolverNode Coordinates CSS CSSConditionRule CSSGroupingRule CSSKeyframeRule CSSKeyframesRule CSSMediaRule CSSNamespaceRule CSSPageRule CSSRule CSSRuleList CSSStyleDeclaration CSSStyleRule CSSStyleSheet CSSSupportsRule CustomEvent
110 syntax keyword javaScriptWebAPI DataTransfer DataView DedicatedWorkerGlobalScope DelayNode DeviceAcceleration DeviceLightEvent DeviceMotionEvent DeviceOrientationEvent DeviceProximityEvent DeviceRotationRate DeviceStorage DeviceStorageChangeEvent DirectoryEntry DirectoryEntrySync DirectoryReader DirectoryReaderSync Document DocumentFragment DocumentTouch DocumentType DOMConfiguration DOMCursor DOMError DOMErrorHandler DOMException DOMHighResTimeStamp DOMImplementation DOMImplementationList DOMImplementationSource DOMLocator DOMObject DOMParser DOMRequest DOMString DOMStringList DOMStringMap DOMTimeStamp DOMTokenList DOMUserData DynamicsCompressorNode
111 syntax keyword javaScriptWebAPI Element ElementTraversal Entity EntityReference Entry EntrySync ErrorEvent Event EventListener EventSource EventTarget Extensions File FileEntry FileEntrySync FileError FileException FileList FileReader FileSystem FileSystemSync Float32Array Float64Array FMRadio FocusEvent FormData GainNode Geolocation History
112 syntax keyword javaScriptWebAPI HTMLAnchorElement HTMLAreaElement HTMLAudioElement HTMLBaseElement HTMLBaseFontElement HTMLBodyElement HTMLBRElement HTMLButtonElement HTMLCanvasElement HTMLCollection HTMLDataElement HTMLDataListElement HTMLDivElement HTMLDListElement HTMLDocument HTMLElement HTMLEmbedElement HTMLFieldSetElement HTMLFormControlsCollection HTMLFormElement HTMLHeadElement HTMLHeadingElement HTMLHRElement HTMLHtmlElement HTMLIFrameElement HTMLImageElement HTMLInputElement HTMLIsIndexElement HTMLKeygenElement HTMLLabelElement HTMLLegendElement HTMLLIElement HTMLLinkElement HTMLMapElement HTMLMediaElement HTMLMetaElement HTMLMeterElement HTMLModElement HTMLObjectElement HTMLOListElement HTMLOptGroupElement HTMLOptionElement HTMLOptionsCollection HTMLOutputElement HTMLParagraphElement HTMLParamElement HTMLPreElement HTMLProgressElement HTMLQuoteElement HTMLScriptElement HTMLSelectElement HTMLSourceElement HTMLSpanElement HTMLStyleElement HTMLTableCaptionElement HTMLTableCellElement HTMLTableColElement HTMLTableElement HTMLTableRowElement HTMLTableSectionElement HTMLTextAreaElement HTMLTimeElement HTMLTitleElement HTMLTrackElement HTMLUListElement HTMLUnknownElement HTMLVideoElement
113 syntax keyword javaScriptWebAPI IDBCursor IDBCursorWithValue IDBDatabase IDBDatabaseException IDBEnvironment IDBFactory IDBIndex IDBKeyRange IDBObjectStore IDBOpenDBRequest IDBRequest IDBTransaction IDBVersionChangeEvent ImageData Int16Array Int32Array Int8Array KeyboardEvent LinkStyle LocalFileSystem LocalFileSystemSync Location MediaQueryList MediaQueryListListener MediaSource MediaStream MediaStreamTrack MessageEvent MouseEvent MouseScrollEvent MouseWheelEvent MozActivity MozActivityOptions MozActivityRequestHandler MozAlarmsManager MozContact MozContactChangeEvent MozIccManager MozMmsEvent MozMmsMessage MozMobileCellInfo MozMobileCFInfo MozMobileConnection MozMobileConnectionInfo MozMobileICCInfo MozMobileMessageManager MozMobileMessageThread MozMobileNetworkInfo MozNetworkStats MozNetworkStatsData MozNetworkStatsManager MozSettingsEvent MozSmsEvent MozSmsFilter MozSmsManager MozSmsMessage MozSmsSegmentInfo MozTimeManager MozWifiConnectionInfoEvent MutationObserver
114 syntax keyword javaScriptWebAPI NamedNodeMap NameList Navigator NavigatorGeolocation NavigatorID NavigatorLanguage NavigatorOnLine NavigatorPlugins NetworkInformation Node NodeFilter NodeIterator NodeList Notation Notification NotifyAudioAvailableEvent OfflineAudioCompletionEvent OfflineAudioContext PannerNode ParentNode Performance PerformanceNavigation PerformanceTiming Plugin PluginArray Position PositionError PositionOptions PowerManager ProcessingInstruction ProgressEvent Promise PromiseResolver PushManager
115 syntax keyword javaScriptWebAPI Range ScriptProcessorNode Selection SettingsLock SettingsManager SharedWorker StyleSheet StyleSheetList SVGAElement SVGAngle SVGAnimateColorElement SVGAnimatedAngle SVGAnimatedBoolean SVGAnimatedEnumeration SVGAnimatedInteger SVGAnimatedLengthList SVGAnimatedNumber SVGAnimatedNumberList SVGAnimatedPoints SVGAnimatedPreserveAspectRatio SVGAnimatedRect SVGAnimatedString SVGAnimatedTransformList SVGAnimateElement SVGAnimateMotionElement SVGAnimateTransformElement SVGAnimationElement SVGCircleElement SVGClipPathElement SVGCursorElement SVGDefsElement SVGDescElement SVGElement SVGEllipseElement SVGFilterElement SVGFontElement SVGFontFaceElement SVGFontFaceFormatElement SVGFontFaceNameElement SVGFontFaceSrcElement SVGFontFaceUriElement
116 syntax keyword javaScriptWebAPI SVGForeignObjectElement SVGGElement SVGGlyphElement SVGGradientElement SVGHKernElement SVGImageElement SVGLength SVGLengthList SVGLinearGradientElement SVGLineElement SVGMaskElement SVGMatrix SVGMissingGlyphElement SVGMPathElement SVGNumber SVGNumberList SVGPathElement SVGPatternElement SVGPolygonElement SVGPolylineElement SVGPreserveAspectRatio SVGRadialGradientElement SVGRect SVGRectElement SVGScriptElement SVGSetElement SVGStopElement SVGStringList SVGStylable SVGStyleElement SVGSVGElement SVGSwitchElement SVGSymbolElement SVGTests SVGTextElement SVGTextPositioningElement SVGTitleElement SVGTransform SVGTransformable SVGTransformList SVGTRefElement SVGTSpanElement SVGUseElement SVGViewElement SVGVKernElement TCPSocket Telephony TelephonyCall Text TextDecoder TextEncoder TextMetrics TimeRanges Touch TouchEvent TouchList Transferable TransitionEvent TreeWalker TypeInfo UIEvent Uint16Array Uint32Array Uint8Array Uint8ClampedArray URL URLUtils URLUtilsReadOnly
117 " }}}
118 " DOM2 CONSTANT {{{
119 syntax keyword javaScriptDomErrNo 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 INVALID_STATE_ERR SYNTAX_ERR INVALID_MODIFICATION_ERR NAMESPACE_ERR INVALID_ACCESS_ERR
120 syntax keyword javaScriptDomNodeConsts 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
121 "}}}
122 " HTML events and internal variables"{{{
123 syntax case ignore
124 syntax keyword javaScriptHtmlEvents onblur onclick oncontextmenu ondblclick onfocus onkeydown onkeypress onkeyup onmousedown onmousemove onmouseout onmouseover onmouseup onresize onload onsubmit
125 syntax case match
126 "}}}
127
128 " Follow stuff should be highligh within a special context
129 " While it can't be handled with context depended with Regex based highlight
130 " So, turn it off by default
131 if exists("javascript_enable_domhtmlcss")
132 " DOM2 things {{{
133 syntax match javaScriptDomElemAttrs contained /\%(nodeName\|nodeValue\|nodeType\|parentNode\|childNodes\|firstChild\|lastChild\|previousSibling\|nextSibling\|attributes\|ownerDocument\|namespaceURI\|prefix\|localName\|tagName\)\>/
134 syntax match javaScriptDomElemFuncs contained /\%(insertBefore\|replaceChild\|removeChild\|appendChild\|hasChildNodes\|cloneNode\|normalize\|isSupported\|hasAttributes\|getAttribute\|setAttribute\|removeAttribute\|getAttributeNode\|setAttributeNode\|removeAttributeNode\|getElementsByTagName\|getAttributeNS\|setAttributeNS\|removeAttributeNS\|getAttributeNodeNS\|setAttributeNodeNS\|getElementsByTagNameNS\|hasAttribute\|hasAttributeNS\)\>/ nextgroup=javaScriptParen skipwhite
135 "}}}
136 " HTML things {{{
137 syntax match javaScriptHtmlElemAttrs contained /\%(className\|clientHeight\|clientLeft\|clientTop\|clientWidth\|dir\|id\|innerHTML\|lang\|length\|offsetHeight\|offsetLeft\|offsetParent\|offsetTop\|offsetWidth\|scrollHeight\|scrollLeft\|scrollTop\|scrollWidth\|style\|tabIndex\|title\)\>/
138 syntax match javaScriptHtmlElemFuncs contained /\%(blur\|click\|focus\|scrollIntoView\|addEventListener\|dispatchEvent\|removeEventListener\|item\)\>/ nextgroup=javaScriptParen skipwhite
139 "}}}
140 " CSS Styles in JavaScript {{{
141 syntax keyword javaScriptCssStyles contained color font fontFamily fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontWeight letterSpacing lineBreak lineHeight quotes rubyAlign rubyOverhang rubyPosition
142 syntax keyword javaScriptCssStyles contained textAlign textAlignLast textAutospace textDecoration textIndent textJustify textJustifyTrim textKashidaSpace textOverflowW6 textShadow textTransform textUnderlinePosition
143 syntax keyword javaScriptCssStyles contained unicodeBidi whiteSpace wordBreak wordSpacing wordWrap writingMode
144 syntax keyword javaScriptCssStyles contained bottom height left position right top width zIndex
145 syntax keyword javaScriptCssStyles contained border borderBottom borderLeft borderRight borderTop borderBottomColor borderLeftColor borderTopColor borderBottomStyle borderLeftStyle borderRightStyle borderTopStyle borderBottomWidth borderLeftWidth borderRightWidth borderTopWidth borderColor borderStyle borderWidth borderCollapse borderSpacing captionSide emptyCells tableLayout
146 syntax keyword javaScriptCssStyles contained margin marginBottom marginLeft marginRight marginTop outline outlineColor outlineStyle outlineWidth padding paddingBottom paddingLeft paddingRight paddingTop
147 syntax keyword javaScriptCssStyles contained listStyle listStyleImage listStylePosition listStyleType
148 syntax keyword javaScriptCssStyles contained background backgroundAttachment backgroundColor backgroundImage gackgroundPosition backgroundPositionX backgroundPositionY backgroundRepeat
149 syntax keyword javaScriptCssStyles contained clear clip clipBottom clipLeft clipRight clipTop content counterIncrement counterReset cssFloat cursor direction display filter layoutGrid layoutGridChar layoutGridLine layoutGridMode layoutGridType
150 syntax keyword javaScriptCssStyles contained marks maxHeight maxWidth minHeight minWidth opacity MozOpacity overflow overflowX overflowY verticalAlign visibility zoom cssText
151 syntax keyword javaScriptCssStyles contained scrollbar3dLightColor scrollbarArrowColor scrollbarBaseColor scrollbarDarkShadowColor scrollbarFaceColor scrollbarHighlightColor scrollbarShadowColor scrollbarTrackColor
152 "}}}
153 " Highlight ways {{{
154 syntax match javaScriptDotNotation "\." nextgroup=javaScriptPrototype,javaScriptDomElemAttrs,javaScriptDomElemFuncs,javaScriptHtmlElemAttrs,javaScriptHtmlElemFuncs
155 syntax match javaScriptDotNotation "\.style\." nextgroup=javaScriptCssStyles
156 "}}}
157 endif
158 " end DOM/HTML/CSS specified things }}}
159 " Code blocks"{{{
160 syntax cluster javaScriptAll contains=javaScriptComment,javaScriptLineComment,javaScriptDocComment,javaScriptString,javaScriptRegexpString,javaScriptNumber,javaScriptFloat,javaScriptLabel,javaScriptSource,javaScriptWebAPI,javaScriptOperator,javaScriptBoolean,javaScriptNull,javaScriptFuncKeyword,javaScriptConditional,javaScriptGlobal,javaScriptRepeat,javaScriptBranch,javaScriptStatement,javaScriptGlobalObjects,javaScriptMessage,javaScriptIdentifier,javaScriptExceptions,javaScriptReserved,javaScriptDeprecated,javaScriptDomErrNo,javaScriptDomNodeConsts,javaScriptHtmlEvents,javaScriptDotNotation,javaScriptBrowserObjects,javaScriptDOMObjects,javaScriptAjaxObjects,javaScriptPropietaryObjects,javaScriptDOMMethods,javaScriptHtmlElemProperties,javaScriptDOMProperties,javaScriptEventListenerKeywords,javaScriptEventListenerMethods,javaScriptAjaxProperties,javaScriptAjaxMethods,javaScriptFuncArg
161
162 if main_syntax == "javascript"
163 syntax sync clear
164 syntax sync ccomment javaScriptComment minlines=200
165 " syntax sync match javaScriptHighlight grouphere javaScriptBlock /{/
166 endif
167 "}}}
168 " Function and arguments highlighting {{{
169 syntax keyword javaScriptFuncKeyword function contained
170 syntax region javaScriptFuncExp start=/\w\+\s\==\s\=function\>/ end="\([^)]*\)" contains=javaScriptFuncEq,javaScriptFuncKeyword,javaScriptFuncArg keepend
171 syntax match javaScriptFuncArg "\(([^()]*)\)" contains=javaScriptParens,javaScriptFuncComma,javaScriptComment contained
172 syntax match javaScriptFuncComma /,/ contained
173 syntax match javaScriptFuncEq /=/ contained
174 syntax region javaScriptFuncDef start="\<function\>" end="\([^)]*\)" contains=javaScriptFuncKeyword,javaScriptFuncArg keepend
175 syntax match javaScriptObjectKey /\<[a-zA-Z_$][0-9a-zA-Z_$]*\>\(\s*:\)\@=/ contains=javaScriptFunctionKey
176 syntax match javaScriptFunctionKey /\<[a-zA-Z_$][0-9a-zA-Z_$]*\>\(\s*:\s*function\s*\)\@=/ contained
177 "}}}
178 " Braces, Parens, symbols, colons {{{
179 syntax match javaScriptBraces "[{}\[\]]"
180 syntax match javaScriptParens "[()]"
181 syntax match javaScriptOpSymbols "=\{1,3}\|!==\|!=\|<\|>\|>=\|<=\|++\|+=\|--\|-="
182 syntax match javaScriptEndColons "[;,]"
183 syntax match javaScriptLogicSymbols "\(&&\)\|\(||\)"
184 "}}}
185 " ES6 String Interpolation {{{
186 syntax match javaScriptTemplateDelim "\${\|}" contained
187 syntax region javaScriptTemplateVar start=+${+ end=+}+ contains=javaScriptTemplateDelim keepend
188 syntax region javaScriptTemplateString start=+`+ skip=+\\\(`\|$\)+ end=+`+ contains=javaScriptTemplateVar,javaScriptSpecial keepend
189 "}}}
190 " JavaScriptFold Function {{{
191
192 function! JavaScriptFold()
193 setl foldmethod=syntax
194 setl foldlevelstart=1
195 syntax region foldBraces start=/{/ end=/}/ transparent fold keepend extend
196 endfunction
197
198 " }}}
199 " Highlight links {{{
200 " Define the default highlighting.
201 " For version 5.7 and earlier: only when not done already
202 " For version 5.8 and later: only when an item doesn't have highlighting yet
203 if version >= 508 || !exists("did_javascript_syn_inits")
204 if version < 508
205 let did_javascript_syn_inits = 1
206 command -nargs=+ HiLink hi link <args>
207 else
208 command -nargs=+ HiLink hi def link <args>
209 endif
210 HiLink javaScriptEndColons Operator
211 HiLink javaScriptOpSymbols Operator
212 HiLink javaScriptLogicSymbols Boolean
213 HiLink javaScriptBraces Function
214 HiLink javaScriptParens Operator
215 HiLink javaScriptTemplateDelim Operator
216
217 HiLink javaScriptComment Comment
218 HiLink javaScriptLineComment Comment
219 HiLink javaScriptDocComment Comment
220 HiLink javaScriptCommentTodo Todo
221
222 HiLink javaScriptDocTags Special
223 HiLink javaScriptDocSeeTag Function
224 HiLink javaScriptDocParam Function
225
226 HiLink javaScriptString String
227 HiLink javaScriptRegexpString String
228 HiLink javaScriptTemplateString String
229
230 HiLink javaScriptNumber Number
231 HiLink javaScriptFloat Number
232
233 HiLink javaScriptGlobal Constant
234 HiLink javaScriptCharacter Character
235 HiLink javaScriptPrototype Type
236 HiLink javaScriptConditional Conditional
237 HiLink javaScriptBranch Conditional
238 HiLink javaScriptIdentifier Identifier
239 HiLink javaScriptRepeat Repeat
240 HiLink javaScriptStatement Statement
241 HiLink javaScriptMessage Keyword
242 HiLink javaScriptReserved Keyword
243 HiLink javaScriptOperator Operator
244 HiLink javaScriptNull Type
245 HiLink javaScriptBoolean Boolean
246 HiLink javaScriptLabel Label
247 HiLink javaScriptSpecial Special
248 HiLink javaScriptSource Special
249 HiLink javaScriptGlobalObjects Special
250 HiLink javaScriptExceptions Special
251
252 HiLink javaScriptDeprecated Exception
253 HiLink javaScriptError Error
254 HiLink javaScriptParensError Error
255 HiLink javaScriptParensErrA Error
256 HiLink javaScriptParensErrB Error
257 HiLink javaScriptParensErrC Error
258 HiLink javaScriptDomErrNo Error
259
260 HiLink javaScriptDomNodeConsts Constant
261 HiLink javaScriptDomElemAttrs Label
262 HiLink javaScriptDomElemFuncs Type
263
264 HiLink javaScriptWebAPI Type
265
266 HiLink javaScriptHtmlElemAttrs Label
267 HiLink javaScriptHtmlElemFuncs Type
268
269 HiLink javaScriptCssStyles Type
270
271 HiLink javaScriptBrowserObjects Constant
272
273 HiLink javaScriptDOMObjects Constant
274 HiLink javaScriptDOMMethods Type
275 HiLink javaScriptDOMProperties Label
276
277 HiLink javaScriptAjaxObjects Constant
278 HiLink javaScriptAjaxMethods Type
279 HiLink javaScriptAjaxProperties Label
280
281 HiLink javaScriptFuncKeyword Function
282 HiLink javaScriptFuncDef PreProc
283 HiLink javaScriptFuncExp Title
284 HiLink javaScriptFuncArg Special
285 HiLink javaScriptFuncComma Operator
286 HiLink javaScriptFuncEq Operator
287
288 HiLink javaScriptHtmlEvents Constant
289 HiLink javaScriptHtmlElemProperties Label
290
291 HiLink javaScriptEventListenerKeywords Type
292
293 HiLink javaScriptPropietaryObjects Constant
294
295 delcommand HiLink
296 endif
297 " end Highlight links }}}
298
299 " Define the htmlJavaScript for HTML syntax html.vim
300 "syntax clear htmlJavaScript
301 "syntax clear javaScriptExpression
302 syntax cluster htmlJavaScript contains=@javaScriptAll,javaScriptBracket,javaScriptParen,javaScriptBlock,javaScriptParenError
303 syntax cluster javaScriptExpression contains=@javaScriptAll,javaScriptBracket,javaScriptParen,javaScriptBlock,javaScriptParenError,@htmlPreproc
304 126
305 let b:current_syntax = "javascript" 127 let b:current_syntax = "javascript"
306 if main_syntax == 'javascript' 128 if main_syntax == 'javascript'
307 unlet main_syntax 129 unlet main_syntax
308 endif 130 endif
309 syntax region jsInJsdocExample matchgroup=Snip start="^\s*\* @example" end="\(^\s*\* [^[:space:]]\)\@=" containedin=@javaScriptComment contains=@javaScriptAll 131 let &cpo = s:cpo_save
310 hi link Snip SpecialComment 132 unlet s:cpo_save
133
134 " vim: ts=8