Use on more targeted syntax available in regex

This commit is contained in:
Patrick Stockwell
2025-09-18 16:27:46 +10:00
parent bc97e44dcc
commit 1b0d3c004e

View File

@@ -715,6 +715,11 @@ if (has('nvim-0.8'))
call Highlight('@lsp.type.namespace.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none })
call Highlight('@lsp.type.parameter.typescript.tsx', { 'fg': s:orange, 'bg': s:none, 'style': s:none })
call Highlight('@lsp.typemod.parameter.declaration.typescript.tsx', { 'fg': s:orange, 'bg': s:none, 'style': s:none })
call Highlight('@keyword.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none })
call Highlight('@punctuation.delimiter.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none })
call Highlight('@punctuation.bracket.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none })
call Highlight('@operator.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none })
call Highlight('@variable.builtin.typescript', { 'fg': s:light_blue, 'bg': s:none, 'style': s:none })
" }}}
" TypeScript React (TSX) {{{