mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 20:43:52 -05:00
17 lines
824 B
VimL
17 lines
824 B
VimL
let files = filter(globpath(&rtp, 'syntax/yats/web-console.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1
|
|
|
|
syntax keyword typescriptGlobal containedin=typescriptIdentifierName console
|
|
syntax keyword typescriptConsoleMethod contained count dir error group groupCollapsed nextgroup=typescriptFuncCallArg
|
|
syntax keyword typescriptConsoleMethod contained groupEnd info log time timeEnd trace nextgroup=typescriptFuncCallArg
|
|
syntax keyword typescriptConsoleMethod contained warn nextgroup=typescriptFuncCallArg
|
|
syntax cluster props add=typescriptConsoleMethod
|
|
if exists("did_typescript_hilink") | HiLink typescriptConsoleMethod Keyword
|
|
endif
|
|
|
|
endif
|