Mercurial > ec-dotfiles
comparison vendor/vim-syntax/typescript.vim @ 625:11e00204fb18
Update syntaxes
author | nanaya <me@nanaya.pro> |
---|---|
date | Thu, 23 May 2019 10:39:21 +0900 |
parents | 7ac088ee101a |
children | ced2ee9efd9f |
comparison
equal
deleted
inserted
replaced
624:ab58f083b2bf | 625:11e00204fb18 |
---|---|
122 syntax keyword typescriptRepeat do while for in of | 122 syntax keyword typescriptRepeat do while for in of |
123 syntax keyword typescriptBranch break continue yield await | 123 syntax keyword typescriptBranch break continue yield await |
124 syntax keyword typescriptLabel case default async readonly | 124 syntax keyword typescriptLabel case default async readonly |
125 syntax keyword typescriptStatement return with | 125 syntax keyword typescriptStatement return with |
126 | 126 |
127 syntax keyword typescriptGlobalObjects Array Boolean Date Function Infinity Math Number NaN Object Packages RegExp String Symbol netscape | 127 syntax keyword typescriptGlobalObjects Array Boolean Date Function Infinity JSON Math Number NaN Object Packages RegExp String Symbol netscape |
128 | 128 |
129 syntax keyword typescriptExceptions try catch throw finally Error EvalError RangeError ReferenceError SyntaxError TypeError URIError | 129 syntax keyword typescriptExceptions try catch throw finally Error EvalError RangeError ReferenceError SyntaxError TypeError URIError |
130 | 130 |
131 syntax keyword typescriptReserved constructor declare as interface module abstract enum int short 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 type namespace from get set keyof | 131 syntax keyword typescriptReserved constructor declare as interface module abstract enum int short 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 type namespace from get set keyof |
132 "}}} | 132 "}}} |
170 syntax keyword typescriptCssStyles contained unicodeBidi whiteSpace wordBreak wordSpacing wordWrap writingMode | 170 syntax keyword typescriptCssStyles contained unicodeBidi whiteSpace wordBreak wordSpacing wordWrap writingMode |
171 syntax keyword typescriptCssStyles contained bottom height left position right top width zIndex | 171 syntax keyword typescriptCssStyles contained bottom height left position right top width zIndex |
172 syntax keyword typescriptCssStyles 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 | 172 syntax keyword typescriptCssStyles 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 |
173 syntax keyword typescriptCssStyles contained margin marginBottom marginLeft marginRight marginTop outline outlineColor outlineStyle outlineWidth padding paddingBottom paddingLeft paddingRight paddingTop | 173 syntax keyword typescriptCssStyles contained margin marginBottom marginLeft marginRight marginTop outline outlineColor outlineStyle outlineWidth padding paddingBottom paddingLeft paddingRight paddingTop |
174 syntax keyword typescriptCssStyles contained listStyle listStyleImage listStylePosition listStyleType | 174 syntax keyword typescriptCssStyles contained listStyle listStyleImage listStylePosition listStyleType |
175 syntax keyword typescriptCssStyles contained background backgroundAttachment backgroundColor backgroundImage gackgroundPosition backgroundPositionX backgroundPositionY backgroundRepeat | 175 syntax keyword typescriptCssStyles contained background backgroundAttachment backgroundColor backgroundImage backgroundPosition backgroundPositionX backgroundPositionY backgroundRepeat |
176 syntax keyword typescriptCssStyles contained clear clip clipBottom clipLeft clipRight clipTop content counterIncrement counterReset cssFloat cursor direction display filter layoutGrid layoutGridChar layoutGridLine layoutGridMode layoutGridType | 176 syntax keyword typescriptCssStyles contained clear clip clipBottom clipLeft clipRight clipTop content counterIncrement counterReset cssFloat cursor direction display filter layoutGrid layoutGridChar layoutGridLine layoutGridMode layoutGridType |
177 syntax keyword typescriptCssStyles contained marks maxHeight maxWidth minHeight minWidth opacity MozOpacity overflow overflowX overflowY verticalAlign visibility zoom cssText | 177 syntax keyword typescriptCssStyles contained marks maxHeight maxWidth minHeight minWidth opacity MozOpacity overflow overflowX overflowY verticalAlign visibility zoom cssText |
178 syntax keyword typescriptCssStyles contained scrollbar3dLightColor scrollbarArrowColor scrollbarBaseColor scrollbarDarkShadowColor scrollbarFaceColor scrollbarHighlightColor scrollbarShadowColor scrollbarTrackColor | 178 syntax keyword typescriptCssStyles contained scrollbar3dLightColor scrollbarArrowColor scrollbarBaseColor scrollbarDarkShadowColor scrollbarFaceColor scrollbarHighlightColor scrollbarShadowColor scrollbarTrackColor |
179 "}}} | 179 "}}} |
180 endif "DOM/HTML/CSS | 180 endif "DOM/HTML/CSS |
204 | 204 |
205 syn match typescriptBraces "[{}\[\]]" | 205 syn match typescriptBraces "[{}\[\]]" |
206 syn match typescriptParens "[()]" | 206 syn match typescriptParens "[()]" |
207 syn match typescriptOpSymbols "=\{1,3}\|!==\|!=\|<\|>\|>=\|<=\|++\|+=\|--\|-=" | 207 syn match typescriptOpSymbols "=\{1,3}\|!==\|!=\|<\|>\|>=\|<=\|++\|+=\|--\|-=" |
208 syn match typescriptEndColons "[;,]" | 208 syn match typescriptEndColons "[;,]" |
209 syn match typescriptLogicSymbols "\(&&\)\|\(||\)" | 209 syn match typescriptLogicSymbols "\(&&\)\|\(||\)\|\(!\)" |
210 | 210 |
211 " typescriptFold Function {{{ | 211 " typescriptFold Function {{{ |
212 | 212 |
213 " function! typescriptFold() | 213 " function! typescriptFold() |
214 | 214 |