From a2e3761aed6710773e8ce6cae11e815366c826b3 Mon Sep 17 00:00:00 2001 From: yoshiya0503 Date: Sun, 16 Feb 2020 18:01:53 +0900 Subject: [PATCH 1/2] add typescript decorator syntax --- colors/PaperColor.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/colors/PaperColor.vim b/colors/PaperColor.vim index 09a3452..b686ef1 100755 --- a/colors/PaperColor.vim +++ b/colors/PaperColor.vim @@ -1609,6 +1609,9 @@ fun! s:apply_syntax_highlightings() exec 'hi javaScriptMessage' . s:fg_foreground exec 'hi javaScriptMember' . s:fg_foreground + " TypeScript Highlighting + exec 'hi typeScriptDecl' . s:fg_orange + " @target https://github.com/pangloss/vim-javascript exec 'hi jsImport' . s:fg_pink . s:ft_bold exec 'hi jsExport' . s:fg_pink . s:ft_bold From 7c11f36058a87e90146318a721eb0aa0dcc4d591 Mon Sep 17 00:00:00 2001 From: yoshiya0503 Date: Sun, 16 Feb 2020 18:54:13 +0900 Subject: [PATCH 2/2] add typescript decorator syntax --- colors/PaperColor.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/colors/PaperColor.vim b/colors/PaperColor.vim index b686ef1..0d52afe 100755 --- a/colors/PaperColor.vim +++ b/colors/PaperColor.vim @@ -1610,7 +1610,8 @@ fun! s:apply_syntax_highlightings() exec 'hi javaScriptMember' . s:fg_foreground " TypeScript Highlighting - exec 'hi typeScriptDecl' . s:fg_orange + exec 'hi typescriptDecorators' . s:fg_orange + exec 'hi typescriptLabel' . s:fg_purple . s:ft_bold " @target https://github.com/pangloss/vim-javascript exec 'hi jsImport' . s:fg_pink . s:ft_bold