coc-git 2.7.8 → 2.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +24 -0
- package/assets/coc-git-logo.png +0 -0
- package/history.md +7 -0
- package/lib/index.js +1654 -1317
- package/package.json +45 -1
- package/AGENTS.md +0 -60
package/Readme.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# coc-git
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="assets/coc-git-logo.png" alt="coc-git logo" width="180">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
3
7
|
[](https://github.com/neoclide/coc-git/actions/workflows/ci.yaml)
|
|
4
8
|
|
|
5
9
|
Git integration of [coc.nvim](https://github.com/neoclide/coc.nvim).
|
|
@@ -92,8 +96,12 @@ In your vim/neovim, run command:
|
|
|
92
96
|
|
|
93
97
|
- `git.realtimeGutters`: Update gutters in realtime, default: true., default: `true`
|
|
94
98
|
|
|
99
|
+
- `git.enableStagedGutters`: Show staged changes in the sign column., default: `false`
|
|
100
|
+
|
|
95
101
|
- `git.signPriority`: Priority of sign gutters, default to `10`.
|
|
96
102
|
|
|
103
|
+
- `git.stagedSignPriority`: Priority of staged gutter signs., default: `9`.
|
|
104
|
+
|
|
97
105
|
- `git.pushArguments`: Additional arguments passed to `git push`, default: `[]`.
|
|
98
106
|
|
|
99
107
|
- `git.changedSign.text`: Text of changed sign., default: `"~"`
|
|
@@ -116,6 +124,22 @@ In your vim/neovim, run command:
|
|
|
116
124
|
|
|
117
125
|
- `git.changeRemovedSign.hlGroup`: Highlight group for change removed sign., default: `"DiffChange"`
|
|
118
126
|
|
|
127
|
+
- `git.stagedAddedSign.text`: Text of staged added sign., default: `"┃"`
|
|
128
|
+
|
|
129
|
+
- `git.stagedAddedSign.hlGroup`: Highlight group for staged added sign., default: `"CocGitStagedAdd"`
|
|
130
|
+
|
|
131
|
+
- `git.stagedChangedSign.text`: Text of staged changed sign., default: `"┃"`
|
|
132
|
+
|
|
133
|
+
- `git.stagedChangedSign.hlGroup`: Highlight group for staged changed sign., default: `"CocGitStagedChange"`
|
|
134
|
+
|
|
135
|
+
- `git.stagedRemovedSign.text`: Text of staged removed sign., default: `"╻"`
|
|
136
|
+
|
|
137
|
+
- `git.stagedRemovedSign.hlGroup`: Highlight group for staged removed sign., default: `"CocGitStagedDelete"`
|
|
138
|
+
|
|
139
|
+
- `git.mixedSign.text`: Text of a sign shared by staged and unstaged changes., default: `"┋"`
|
|
140
|
+
|
|
141
|
+
- `git.mixedSign.hlGroup`: Highlight group for a mixed sign., default: `"CocGitMixed"`
|
|
142
|
+
|
|
119
143
|
- `git.semanticCommit.filetypes`: Enabled filetypes, default: `["gitcommit","gina-commit"]`
|
|
120
144
|
|
|
121
145
|
- `git.semanticCommit.scope`: Commit message with scope field, default: `true`
|
|
Binary file
|
package/history.md
CHANGED