File tree 3 files changed +26
-0
lines changed
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Included Airline themes Fixed #20
13
13
- CI: Get and update primer primitives automatically #253
14
+ - Support coc-explorer highlights
14
15
15
16
### Changes
16
17
@@ -24,6 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
24
25
- #257 fixed
25
26
- #261 fixed
26
27
- #268 fixed
28
+ - #274 fixed
29
+ - #160 closed due to inactivity.
27
30
28
31
## [ v1.0.0] - 19 May 2023
29
32
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ M.options = collect.deep_copy(defaults)
60
60
M .module_names = {
61
61
' cmp' ,
62
62
' coc' ,
63
+ ' coc_explorer' ,
63
64
' dapui' ,
64
65
' diffchar' ,
65
66
' dashboard' ,
Original file line number Diff line number Diff line change
1
+ -- https://github.com/weirongxu/coc-explorer
2
+
3
+ local M = {}
4
+
5
+ function M .get (spec , config , opts )
6
+ return {
7
+ CocExplorerNormalFloat = { link = ' NormalSB' },
8
+
9
+ CocExplorerFileRootName = { fg = spec .fg1 , style = ' bold' },
10
+ CocExplorerFileDirectory = { fg = spec .fg1 , style = ' bold' },
11
+
12
+ CocExplorerGitPathChange_Internal = { fg = spec .palette .done .fg },
13
+ CocExplorerGitAdded = { fg = spec .git .add },
14
+ CocExplorerGitModified = { fg = spec .git .changed },
15
+ CocExplorerGitContentChange = { fg = spec .git .changed },
16
+ CocExplorerGitPathChange = { fg = spec .palette .done .fg },
17
+ CocExplorerGitIgnored = { fg = spec .syntax .comment },
18
+ CocExplorerGitUntracked = { fg = spec .syntax .comment },
19
+ }
20
+ end
21
+
22
+ return M
You can’t perform that action at this time.
0 commit comments