Compare commits

...

3 commits

Author SHA1 Message Date
Kevin MacMartin
c625fe2499 Fix up the javascript syntax 2024-01-30 16:12:19 -05:00
Kevin MacMartin
59408083ae Fix the colour of quoted text in html 2024-01-30 15:39:11 -05:00
Kevin MacMartin
ae97850a6f Update submodules 2024-01-30 15:16:39 -05:00
4 changed files with 18 additions and 10 deletions

@ -1 +1 @@
Subproject commit fcd31ec145bbc628b90371be381717a1498b7c12 Subproject commit 12edcb59449b335555652898f82dd6d5c59d519a

@ -1 +1 @@
Subproject commit 854a8df0d06b8d3fcb30fa7f2b08c62b553eee3b Subproject commit f116dcc8e21021e6fbfb6b0a9f8f7b9566d933f4

@ -1 +1 @@
Subproject commit 31ce3f9846d1021d111e65b42e8746fa0f74b560 Subproject commit ce116b6b0649eccb41bd2eab99907adefe712040

View file

@ -128,7 +128,7 @@ endfun
hi! link Float Number hi! link Float Number
hi! link Include Keyword hi! link Include Keyword
hi! link MoreMsg Special hi! link MoreMsg Special
hi! link SpecialChar Special hi! link SpecialChar String
hi! link StorageClass Type hi! link StorageClass Type
hi! link Structure PreProc hi! link Structure PreProc
@ -176,12 +176,20 @@ endfun
call s:C("htmlTagName",g:cYellow,"","bold") call s:C("htmlTagName",g:cYellow,"","bold")
"javaScript "javaScript
hi! link javaScriptBraces Delimiter call s:C("jsImport",g:cRed,"","bold")
hi! link javaScriptParens Delimiter call s:C("jsModuleKeyword",g:cYellow,"","bold")
hi! link javaScriptValue Constant call s:C("jsFrom",g:cRed,"","bold")
hi! link javascriptDomElemAttrs javaScriptSpecial call s:C("jsExport",g:cRed,"","bold")
hi! link javascriptDomElemFuncs javaScriptFunction call s:C("jsFuncBlock",g:cBlue,"","")
hi! link javascriptHtmlEvents javaScriptSpecial call s:C("jsObjectKey",g:cBlue,"","")
call s:C("jsObjectProp",g:cBlue,"","")
call s:C("jsBracket",g:cYellow,"","bold")
call s:C("jsReturn",g:cRed,"","bold")
hi! link jsBraces Delimiter
hi! link jsParens Delimiter
hi! link jsDomElemAttrs jsSpecial
hi! link jsDomElemFuncs jsFunction
hi! link jsHtmlEvents jsSpecial
"json "json
autocmd BufEnter,FileType json hi! link Label Constant autocmd BufEnter,FileType json hi! link Label Constant