diff options
| author | Adam Stankiewicz <sheerun@sher.pl> | 2019-12-07 12:21:37 +0100 | 
|---|---|---|
| committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-12-07 12:21:37 +0100 | 
| commit | 7a0f2d974f9ac5bc85607e8c769d3370dd18ac74 (patch) | |
| tree | 5c2b955af8e0f2ed54442d9e938fad403148ffce /syntax/basic/class.vim | |
| parent | 15aeea662e0b08088ac7b6e3ee661c834e69106a (diff) | |
| download | vim-polyglot-7a0f2d974f9ac5bc85607e8c769d3370dd18ac74.tar.gz vim-polyglot-7a0f2d974f9ac5bc85607e8c769d3370dd18ac74.zip | |
Updatev4.1.2
Diffstat (limited to '')
| -rw-r--r-- | syntax/basic/class.vim | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/syntax/basic/class.vim b/syntax/basic/class.vim index 73f63468..303d2077 100644 --- a/syntax/basic/class.vim +++ b/syntax/basic/class.vim @@ -15,7 +15,7 @@ syntax match   typescriptClassName             contained /\K\k*/  syntax region typescriptClassTypeParameter    \ start=/</ end=/>/ -  \ contains=typescriptTypeParameter +  \ contains=@typescriptTypeParameterCluster    \ nextgroup=typescriptClassBlock,typescriptClassExtends    \ contained skipwhite skipnl @@ -47,7 +47,7 @@ syntax match   typescriptInterfaceName             contained /\k\+/    \ skipwhite skipnl  syntax region typescriptInterfaceTypeParameter    \ start=/</ end=/>/ -  \ contains=typescriptTypeParameter +  \ contains=@typescriptTypeParameterCluster    \ nextgroup=typescriptObjectType,typescriptInterfaceExtends    \ contained    \ skipwhite skipnl | 
