summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorHerrington Darkholme <2883231+HerringtonDarkholme@users.noreply.github.com>2023-08-26 09:01:47 -0700
committerGitHub <noreply@github.com>2023-08-26 18:01:47 +0200
commit535b9e12d02f5fef969fb680d579c586bd5f40db (patch)
tree039107037b9237d46237476a1f9adbda3021a889 /runtime
parentfa0094e1629332751d62416eb7f122181605ff5f (diff)
runtime(typescript): Fix highlighting symbols after number literal (#12911)
fixes #12831 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime')
-rw-r--r--runtime/syntax/shared/typescriptcommon.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/shared/typescriptcommon.vim b/runtime/syntax/shared/typescriptcommon.vim
index cfa4e1433b..d06525115e 100644
--- a/runtime/syntax/shared/typescriptcommon.vim
+++ b/runtime/syntax/shared/typescriptcommon.vim
@@ -1,7 +1,7 @@
" Vim syntax file
" Language: TypeScript and TypeScriptReact
" Maintainer: Herrington Darkholme
-" Last Change: 2023 Aug 13
+" Last Change: 2023 Aug 24
" Based On: Herrington Darkholme's yats.vim
" Changes: See https://github.com/HerringtonDarkholme/yats.vim
" Credits: See yats.vim on github
@@ -149,7 +149,7 @@ syntax match typescriptNumber /\<0[bB][01][01_]*\>/ nextgroup=@typescript
syntax match typescriptNumber /\<0[oO][0-7][0-7_]*\>/ nextgroup=@typescriptSymbols skipwhite skipempty
syntax match typescriptNumber /\<0[xX][0-9a-fA-F][0-9a-fA-F_]*\>/ nextgroup=@typescriptSymbols skipwhite skipempty
syntax match typescriptNumber /\<\%(\d[0-9_]*\%(\.\d[0-9_]*\)\=\|\.\d[0-9_]*\)\%([eE][+-]\=\d[0-9_]*\)\=\>/
- \ nextgroup=typescriptSymbols skipwhite skipempty
+ \ nextgroup=@typescriptSymbols skipwhite skipempty
syntax region typescriptObjectLiteral matchgroup=typescriptBraces
\ start=/{/ end=/}/