diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2015-07-18 21:29:35 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2015-07-18 21:29:35 +0200 |
commit | 12db3dafc57d990db2b3758b0d97a37333a0ddab (patch) | |
tree | 848bc19de5e2f6f48b57d15ad43dc446e5da6ac3 /syntax/typescript.vim | |
parent | d1e95cbc98805f82024b318d8fd52e931a3aeae2 (diff) | |
download | vim-polyglot-12db3dafc57d990db2b3758b0d97a37333a0ddab.tar.gz vim-polyglot-12db3dafc57d990db2b3758b0d97a37333a0ddab.zip |
Updatev1.14.1
Diffstat (limited to 'syntax/typescript.vim')
-rw-r--r-- | syntax/typescript.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/syntax/typescript.vim b/syntax/typescript.vim index 469efa37..5f249578 100644 --- a/syntax/typescript.vim +++ b/syntax/typescript.vim @@ -100,7 +100,7 @@ syntax keyword typescriptEventListenerMethods contained scrollIntoView addEventL " }}} "" Programm Keywords"{{{ syntax keyword typescriptSource import export from as -syntax keyword typescriptIdentifier arguments this let var void yield const +syntax keyword typescriptIdentifier arguments this let var void const syntax keyword typescriptOperator delete new instanceof typeof syntax keyword typescriptBoolean true false syntax keyword typescriptNull null undefined @@ -111,8 +111,8 @@ syntax keyword typescriptDeprecated escape unescape all applets alinkColor bgCol "" Statement Keywords"{{{ syntax keyword typescriptConditional if else switch syntax keyword typescriptRepeat do while for in of -syntax keyword typescriptBranch break continue -syntax keyword typescriptLabel case default +syntax keyword typescriptBranch break continue yield await +syntax keyword typescriptLabel case default async syntax keyword typescriptStatement return with syntax keyword typescriptGlobalObjects Array Boolean Date Function Infinity Math Number NaN Object Packages RegExp String netscape |