Introduce storage highlighting for typescript/javascript (#2961)

This commit is contained in:
Jake Langford 2022-07-06 13:54:07 +00:00 committed by GitHub
parent e35abe38f3
commit 230ba264bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 12 deletions

View file

@ -163,19 +163,14 @@
[
"as"
"async"
"class"
"const"
"debugger"
"delete"
"export"
"extends"
"from"
"function"
"get"
"import"
"in"
"instanceof"
"let"
"new"
"of"
"set"
@ -183,11 +178,17 @@
"target"
"try"
"typeof"
"var"
"void"
"with"
] @keyword
[
"class"
"let"
"const"
"var"
] @keyword.storage.type
[
"switch"
"case"
@ -206,3 +207,9 @@
"do"
"await"
] @keyword.control
[
"import"
"export"
] @keyword.control.import