]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(javascript): add "as" as a reserved keyword to syntax script
authorNir Lichtman <nir@lichtman.org>
Thu, 7 Aug 2025 13:29:18 +0000 (15:29 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 7 Aug 2025 13:30:42 +0000 (15:30 +0200)
closes: #17912

Signed-off-by: Nir Lichtman <nir@lichtman.org>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/syntax/javascript.vim

index c73f5d70977a4d7b0d13709d1973bb5134b1188b..cc900d88856a868d47e5b0cfd677f0a30f0177c5 100644 (file)
@@ -11,6 +11,7 @@
 "              2013 Jun 12: adjusted javaScriptRegexpString (Kevin Locke)
 "              2018 Apr 14: adjusted javaScriptRegexpString (LongJohnCoder)
 "              2024 Aug 14: fix a few stylistic issues (#15480)
+"              2025 Aug 07: as is a reserved keyword (#17912)
 
 " tuning parameters:
 " unlet javaScript_fold
@@ -65,9 +66,9 @@ syn keyword javaScriptLabel           case default
 syn keyword javaScriptException                try catch finally throw
 syn keyword javaScriptMessage          alert confirm prompt status
 syn keyword javaScriptGlobal           self window top parent
-syn keyword javaScriptMember           document event location 
+syn keyword javaScriptMember           document event location
 syn keyword javaScriptDeprecated       escape unescape
-syn keyword javaScriptReserved         abstract boolean byte char class const debugger double enum export extends final float from goto implements import int interface let long native package private protected public short super synchronized throws transient var volatile async
+syn keyword javaScriptReserved         abstract as boolean byte char class const debugger double enum export extends final float from goto implements import int interface let long native package private protected public short super synchronized throws transient var volatile async
 syn keyword javaScriptModifier  static
 
 syn cluster  javaScriptEmbededExpr     contains=javaScriptBoolean,javaScriptNull,javaScriptIdentifier,javaScriptStringD,javaScriptStringS,javaScriptStringT
@@ -126,7 +127,7 @@ hi def link javaScriptException             Exception
 hi def link javaScriptMessage          Keyword
 hi def link javaScriptGlobal           Keyword
 hi def link javaScriptMember           Keyword
-hi def link javaScriptDeprecated               Exception 
+hi def link javaScriptDeprecated               Exception
 hi def link javaScriptReserved         Keyword
 hi def link javaScriptModifier         StorageClass
 hi def link javaScriptDebug            Debug