runtime(javascript): fix default link of javaScriptNumber in syntax file (#11788)
Commit: https://github.com/vim/vim/commit/e71e9d9ad368f83162a9c08217a9faf9bda909a7 Author: Meqa <[email protected]> Date: Sun Aug 20 22:20:59 2023 +0300 runtime(javascript): fix default link of javaScriptNumber in syntax file (https://github.com/vim/vim/issues/11788) cool unused matching diff --git a/runtime/syntax/javascript.vim b/runtime/syntax/javascript.vim index cb2d16e2a..e3b4cdf70 100644 --- a/runtime/syntax/javascript.vim +++ b/runtime/syntax/javascript.vim @@ -103,7 +103,7 @@ hi def link javaScriptStringD String hi def link javaScriptStringT String hi def link javaScriptCharacter Character hi def link javaScriptSpecialCharacter javaScriptSpecial -hi def link javaScriptNumber javaScriptValue +hi def link javaScriptNumber Number hi def link javaScriptConditional Conditional hi def link javaScriptRepeat Repeat hi def link javaScriptBranch Conditional -- -- 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 on the web visit https://groups.google.com/d/msgid/vim_dev/E1qXo7i-00AvSD-E0%40256bit.org.
