From cda9ceb656ec186848b16c3112ac077e9ef402bd Mon Sep 17 00:00:00 2001 From: Patrick Stockwell Date: Thu, 9 Oct 2025 16:12:33 +1100 Subject: [PATCH] Use regex for comments (to show TODO highlights) --- colors/vim-monokai-tasty.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index 97a2f4f..0de291e 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -716,10 +716,12 @@ if (has('nvim-0.8')) 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('@keyword.function.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 }) + call Highlight('@comment.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none }) " }}} " TypeScript React (TSX) {{{