mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
14 lines
791 B
VimL
14 lines
791 B
VimL
if polyglot#init#is_disabled(expand('<sfile>:p'), 'typescript', 'syntax/yats/node.vim')
|
|
finish
|
|
endif
|
|
|
|
syntax keyword typescriptNodeGlobal containedin=typescriptIdentifierName global process
|
|
syntax keyword typescriptNodeGlobal containedin=typescriptIdentifierName console Buffer
|
|
syntax keyword typescriptNodeGlobal containedin=typescriptIdentifierName module exports
|
|
syntax keyword typescriptNodeGlobal containedin=typescriptIdentifierName setTimeout
|
|
syntax keyword typescriptNodeGlobal containedin=typescriptIdentifierName clearTimeout
|
|
syntax keyword typescriptNodeGlobal containedin=typescriptIdentifierName setInterval
|
|
syntax keyword typescriptNodeGlobal containedin=typescriptIdentifierName clearInterval
|
|
if exists("did_typescript_hilink") | HiLink typescriptNodeGlobal Structure
|
|
endif
|