diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-02 06:51:47 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-02 16:20:22 +0200 |
commit | bd23fefb391816648ebd701096bf9973f6256750 (patch) | |
tree | 57902805c83b88c95fa2d1b0dd81702d929860db /runtime/syntax/typescript.vim | |
parent | ad9b781bba8db3ff08151ca0ff8390ca504599af (diff) | |
download | rneovim-bd23fefb391816648ebd701096bf9973f6256750.tar.gz rneovim-bd23fefb391816648ebd701096bf9973f6256750.tar.bz2 rneovim-bd23fefb391816648ebd701096bf9973f6256750.zip |
vim-patch:12ee7ff00b91
Update runtime files
https://github.com/vim/vim/commit/12ee7ff00b91d852e060bb24951d1c94239863eb
Diffstat (limited to 'runtime/syntax/typescript.vim')
-rw-r--r-- | runtime/syntax/typescript.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/syntax/typescript.vim b/runtime/syntax/typescript.vim index 3ce30f8b6d..bc382610a9 100644 --- a/runtime/syntax/typescript.vim +++ b/runtime/syntax/typescript.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: TypeScript " Maintainer: Bram Moolenaar -" Last Change: 2019 Jun 06 +" Last Change: 2019 Jun 07 " Based On: Herrington Darkholme's yats.vim " Changes: See https:github.com/HerringtonDarkholme/yats.vim " Credits: See yats.vim @@ -791,6 +791,12 @@ if get(g:, 'yats_host_keyword', 1) syntax keyword typescriptNodeGlobal containedin=typescriptIdentifierName clearInterval hi def link typescriptNodeGlobal Structure + syntax keyword typescriptGlobal containedin=typescriptIdentifierName describe it test + syntax keyword typescriptGlobal containedin=typescriptIdentifierName before after + syntax keyword typescriptGlobal containedin=typescriptIdentifierName beforeEach afterEach + syntax keyword typescriptGlobal containedin=typescriptIdentifierName beforeAll afterAll + syntax keyword typescriptGlobal containedin=typescriptIdentifierName expect assert + "runtime syntax/yats/web.vim syntax keyword typescriptBOM containedin=typescriptIdentifierName AbortController syntax keyword typescriptBOM containedin=typescriptIdentifierName AbstractWorker AnalyserNode |