coc-git 2.4.11 → 2.5.2
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/lib/index.js +326 -216
- package/package.json +70 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coc-git",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.2",
|
|
4
4
|
"description": "Git extension for coc.nvim",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"publisher": "chemzqm",
|
|
@@ -290,6 +290,69 @@
|
|
|
290
290
|
"default": false,
|
|
291
291
|
"description": "Show commit in floating or popup window"
|
|
292
292
|
},
|
|
293
|
+
"git.floatConfig": {
|
|
294
|
+
"type": "object",
|
|
295
|
+
"description": "Configure style of float window/popup, extends from floatFactory.floatConfig",
|
|
296
|
+
"additionalProperties": false,
|
|
297
|
+
"properties": {
|
|
298
|
+
"border": {
|
|
299
|
+
"type": "boolean",
|
|
300
|
+
"default": false,
|
|
301
|
+
"description": "Set to true to use borders."
|
|
302
|
+
},
|
|
303
|
+
"rounded": {
|
|
304
|
+
"type": "boolean",
|
|
305
|
+
"default": false,
|
|
306
|
+
"description": "Use rounded borders when border is true."
|
|
307
|
+
},
|
|
308
|
+
"highlight": {
|
|
309
|
+
"type": "string",
|
|
310
|
+
"default": "CocFloating",
|
|
311
|
+
"description": "Background highlight group of float window."
|
|
312
|
+
},
|
|
313
|
+
"title": {
|
|
314
|
+
"type": "string",
|
|
315
|
+
"default": "",
|
|
316
|
+
"description": "Title used by float window."
|
|
317
|
+
},
|
|
318
|
+
"borderhighlight": {
|
|
319
|
+
"type": "string",
|
|
320
|
+
"default": "CocFloating",
|
|
321
|
+
"description": "Border highlight group of float window."
|
|
322
|
+
},
|
|
323
|
+
"close": {
|
|
324
|
+
"type": "boolean",
|
|
325
|
+
"default": false,
|
|
326
|
+
"description": "Set to true to draw close icon"
|
|
327
|
+
},
|
|
328
|
+
"maxWidth": {
|
|
329
|
+
"type": "integer",
|
|
330
|
+
"description": "Maximum width of float window, include border."
|
|
331
|
+
},
|
|
332
|
+
"maxHeight": {
|
|
333
|
+
"type": "integer",
|
|
334
|
+
"minimum": 2,
|
|
335
|
+
"description": "Maximum height of float window, include border."
|
|
336
|
+
},
|
|
337
|
+
"focusable": {
|
|
338
|
+
"type": "boolean",
|
|
339
|
+
"default": true,
|
|
340
|
+
"description": "Enable focus by user actions (wincmds, mouse events), neovim only."
|
|
341
|
+
},
|
|
342
|
+
"shadow": {
|
|
343
|
+
"type": "boolean",
|
|
344
|
+
"default": false,
|
|
345
|
+
"description": "Drop shadow effect by blending with the background, neovim only."
|
|
346
|
+
},
|
|
347
|
+
"winblend": {
|
|
348
|
+
"type": "integer",
|
|
349
|
+
"default": 0,
|
|
350
|
+
"minimum": 0,
|
|
351
|
+
"maximum": 100,
|
|
352
|
+
"description": "Enables pseudo-transparency by set 'winblend' option of window, neovim only."
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
},
|
|
293
356
|
"git.gitlab.hosts": {
|
|
294
357
|
"type": "array",
|
|
295
358
|
"default": [
|
|
@@ -312,6 +375,11 @@
|
|
|
312
375
|
"default": "DiffAdd",
|
|
313
376
|
"description": "Highlight group for the incoming version of a merge conflict."
|
|
314
377
|
},
|
|
378
|
+
"git.gstatus.saveBeforeOpen": {
|
|
379
|
+
"type": "boolean",
|
|
380
|
+
"default": "false",
|
|
381
|
+
"description": "Auto save opened files before open list."
|
|
382
|
+
},
|
|
315
383
|
"coc.source.issues.enable": {
|
|
316
384
|
"type": "boolean",
|
|
317
385
|
"default": true
|
|
@@ -359,7 +427,7 @@
|
|
|
359
427
|
"@types/node": "^12.12.0",
|
|
360
428
|
"@types/uuid": "^7.0.1",
|
|
361
429
|
"@types/which": "^1.3.2",
|
|
362
|
-
"coc.nvim": "^0.0.
|
|
430
|
+
"coc.nvim": "^0.0.83-next.2",
|
|
363
431
|
"colors": "^1.4.0",
|
|
364
432
|
"debounce": "^1.2.0",
|
|
365
433
|
"esbuild": "^0.8.29",
|