runtime(javascript): Add "using" keyword to JavaScript syntax highlighting
Commit: https://github.com/vim/vim/commit/4b97fc901fd5fc52c2e9ac77c3710976cec5ea9a Author: Devin Weaver <[email protected]> Date: Wed Sep 24 17:56:00 2025 +0000 runtime(javascript): Add "using" keyword to JavaScript syntax highlighting Prior to this change, const and let were keywords for variable declarations. This change adds `using` as another keyword for variable declaration. This JavaScript feature was recently introduced. Docs: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/using closes: #18381 Signed-off-by: Devin Weaver <[email protected]> Signed-off-by: Christian Brabandt <[email protected]> diff --git a/runtime/syntax/javascript.vim b/runtime/syntax/javascript.vim index cc900d888..c89fcedce 100644 --- a/runtime/syntax/javascript.vim +++ b/runtime/syntax/javascript.vim @@ -12,6 +12,7 @@ " 2018 Apr 14: adjusted javaScriptRegexpString (LongJohnCoder) " 2024 Aug 14: fix a few stylistic issues (#15480) " 2025 Aug 07: as is a reserved keyword (#17912) +" 2025 Sep 24: using is a reserved keyword (Devin Weaver) " tuning parameters: " unlet javaScript_fold @@ -68,7 +69,7 @@ syn keyword javaScriptMessage alert confirm prompt status syn keyword javaScriptGlobal self window top parent syn keyword javaScriptMember document event location syn keyword javaScriptDeprecated escape unescape -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 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 using syn keyword javaScriptModifier static syn cluster javaScriptEmbededExpr contains=javaScriptBoolean,javaScriptNull,javaScriptIdentifier,javaScriptStringD,javaScriptStringS,javaScriptStringT -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1v1Tmj-00984u-RE%40256bit.org.
