summaryrefslogtreecommitdiffstats
path: root/syntax/basic/decorator.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-01-25 16:56:10 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2020-01-25 16:56:10 +0100
commit35ea4d2b9072594b6c0ccf87bde7978ed9f94755 (patch)
treee829bad239fea3150cd0963933f3e33214f069b4 /syntax/basic/decorator.vim
parent967486dd716de860db3ef091a9dcb9cb65023534 (diff)
downloadvim-polyglot-35ea4d2b9072594b6c0ccf87bde7978ed9f94755.tar.gz
vim-polyglot-35ea4d2b9072594b6c0ccf87bde7978ed9f94755.zip
Updatev4.2.1
Diffstat (limited to 'syntax/basic/decorator.vim')
-rw-r--r--syntax/basic/decorator.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/basic/decorator.vim b/syntax/basic/decorator.vim
index 1a8fc2c7..2a7a1dd1 100644
--- a/syntax/basic/decorator.vim
+++ b/syntax/basic/decorator.vim
@@ -1,7 +1,7 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1
syntax match typescriptDecorator /@\([_$a-zA-Z][_$a-zA-Z0-9]*\.\)*[_$a-zA-Z][_$a-zA-Z0-9]*\>/
- \ nextgroup=typescriptArgumentList,typescriptTypeArguments
+ \ nextgroup=typescriptFuncCallArg,typescriptTypeArguments
\ contains=@_semantic,typescriptDotNotation
endif