mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-11 04:53:51 -05:00
12 lines
573 B
VimL
12 lines
573 B
VimL
if !polyglot#util#IsEnabled('typescript', expand('<sfile>:p'))
|
|
finish
|
|
endif
|
|
|
|
syntax keyword typescriptGlobal containedin=typescriptIdentifierName Proxy
|
|
syntax keyword typescriptProxyAPI contained getOwnPropertyDescriptor getOwnPropertyNames
|
|
syntax keyword typescriptProxyAPI contained defineProperty deleteProperty freeze seal
|
|
syntax keyword typescriptProxyAPI contained preventExtensions has hasOwn get set enumerate
|
|
syntax keyword typescriptProxyAPI contained iterate ownKeys apply construct
|
|
if exists("did_typescript_hilink") | HiLink typescriptProxyAPI Keyword
|
|
endif
|