From b13569a6ce13e5c4150e34bd803fe021c5795f3d Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Mon, 20 May 2019 18:12:36 +0800 Subject: [PATCH 1/5] Update codedark.vim --- colors/codedark.vim | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/colors/codedark.vim b/colors/codedark.vim index c8b8dd6..12cbcd6 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -279,7 +279,7 @@ call hi('jsClassKeyword', s:cdBlue, {}, 'none', {}) call hi('jsExtendsKeyword', s:cdBlue, {}, 'none', {}) call hi('jsExportDefault', s:cdPink, {}, 'none', {}) call hi('jsFuncCall', s:cdYellow, {}, 'none', {}) -call hi('jsObjectKey', s:cdYellow, {}, 'none', {}) +call hi('jsObjectKey', s:cdLightBlue, {}, 'none', {}) call hi('jsObjectValue', s:cdLightBlue, {}, 'none', {}) call hi('jsParen', s:cdLightBlue, {}, 'none', {}) @@ -356,3 +356,8 @@ call hi('gitcommitOverflow', s:cdRed, {}, 'none', {}) call hi('gitcommitSummary', s:cdPink, {}, 'none', {}) call hi('gitcommitBlank', s:cdPink, {}, 'none', {}) +" Lua: +call hi('luaFuncCall', s:cdYellow, {}, 'none', {}) +call hi('luaFuncArgName', s:cdLightBlue, {}, 'none', {}) +call hi('luaFuncKeyword', s:cdPink, {}, 'none', {}) +call hi('luaLocal', s:cdPink, {}, 'none', {}) From 73ffa0a188402b304933c36c4f934d30398ee7d5 Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Wed, 22 May 2019 15:26:59 +0800 Subject: [PATCH 2/5] Update codedark.vim --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 12cbcd6..09929d0 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -361,3 +361,4 @@ call hi('luaFuncCall', s:cdYellow, {}, 'none', {}) call hi('luaFuncArgName', s:cdLightBlue, {}, 'none', {}) call hi('luaFuncKeyword', s:cdPink, {}, 'none', {}) call hi('luaLocal', s:cdPink, {}, 'none', {}) +call hi('luaBuiltIn', s:cdBlue, {}, 'none', {}) From 59c38c2cee7c1f0ecddc37778cd8357107d57cea Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Thu, 23 May 2019 11:29:58 +0800 Subject: [PATCH 3/5] set jsOperatorKeyword color to `cdBlue` --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 09929d0..da03c89 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -270,6 +270,7 @@ call hi('jsVariableDef', s:cdLightBlue, {}, 'none', {}) call hi('jsFuncArgs', s:cdLightBlue, {}, 'none', {}) call hi('jsRegexpString', s:cdLightRed, {}, 'none', {}) call hi('jsThis', s:cdBlue, {}, 'none', {}) +call hi('jsOperatorKeyword', s:cdBlue, {}, 'none', {}) call hi('jsDestructuringBlock', s:cdLightBlue, {}, 'none', {}) call hi('jsObjectKey', s:cdLightBlue, {}, 'none', {}) call hi('jsGlobalObjects', s:cdBlueGreen, {}, 'none', {}) From 7ae18491abe337624bcebd87f0ffc664b1aba4d5 Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Thu, 23 May 2019 11:50:03 +0800 Subject: [PATCH 4/5] Javascript set `jsObjectProp' color to `cdLightBlue` --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index da03c89..b4af7cc 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -283,6 +283,7 @@ call hi('jsFuncCall', s:cdYellow, {}, 'none', {}) call hi('jsObjectKey', s:cdLightBlue, {}, 'none', {}) call hi('jsObjectValue', s:cdLightBlue, {}, 'none', {}) call hi('jsParen', s:cdLightBlue, {}, 'none', {}) +call hi('jsObjectProp', s:cdLightBlue, {}, 'none', {}) " XML: call hi('xmlTag', s:cdBlueGreen, {}, 'none', {}) From 09bcb23f41c2f98525a799b97b25dc44a64fcb73 Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Thu, 23 May 2019 11:58:10 +0800 Subject: [PATCH 5/5] delete duplicated `jsObjectKey` item --- colors/codedark.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/colors/codedark.vim b/colors/codedark.vim index b4af7cc..b8af5df 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -280,7 +280,6 @@ call hi('jsClassKeyword', s:cdBlue, {}, 'none', {}) call hi('jsExtendsKeyword', s:cdBlue, {}, 'none', {}) call hi('jsExportDefault', s:cdPink, {}, 'none', {}) call hi('jsFuncCall', s:cdYellow, {}, 'none', {}) -call hi('jsObjectKey', s:cdLightBlue, {}, 'none', {}) call hi('jsObjectValue', s:cdLightBlue, {}, 'none', {}) call hi('jsParen', s:cdLightBlue, {}, 'none', {}) call hi('jsObjectProp', s:cdLightBlue, {}, 'none', {})