mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-11 13:03:50 -05:00
10 lines
685 B
VimL
10 lines
685 B
VimL
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1
|
|
syntax keyword typescriptTestGlobal containedin=typescriptIdentifierName describe
|
|
syntax keyword typescriptTestGlobal containedin=typescriptIdentifierName it test before
|
|
syntax keyword typescriptTestGlobal containedin=typescriptIdentifierName after beforeEach
|
|
syntax keyword typescriptTestGlobal containedin=typescriptIdentifierName afterEach
|
|
syntax keyword typescriptTestGlobal containedin=typescriptIdentifierName beforeAll
|
|
syntax keyword typescriptTestGlobal containedin=typescriptIdentifierName afterAll
|
|
syntax keyword typescriptTestGlobal containedin=typescriptIdentifierName expect assert
|
|
endif
|