coc-git 2.7.9 → 2.7.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coc-git",
3
- "version": "2.7.9",
3
+ "version": "2.7.11",
4
4
  "description": "Git extension for coc.nvim",
5
5
  "main": "lib/index.js",
6
6
  "publisher": "chemzqm",
@@ -32,6 +32,10 @@
32
32
  "title": "Refresh git information for all buffers.",
33
33
  "command": "git.refresh"
34
34
  },
35
+ {
36
+ "title": "Open changed files from Git status in a TreeView.",
37
+ "command": "git.statusTree"
38
+ },
35
39
  {
36
40
  "title": "Navigate to the next changed chunk.",
37
41
  "command": "git.nextChunk"
@@ -76,6 +80,10 @@
76
80
  "title": "Show commit of current chunk.",
77
81
  "command": "git.showCommit"
78
82
  },
83
+ {
84
+ "title": "Show commit of current line in TreeView.",
85
+ "command": "git.showCommitTree"
86
+ },
79
87
  {
80
88
  "title": "Open current line in browser, github url supported.",
81
89
  "command": "git.browserOpen"
@@ -410,6 +418,18 @@
410
418
  "scope": "application",
411
419
  "description": "Command used when split new window for show commit."
412
420
  },
421
+ "git.commitFiles.splitCommand": {
422
+ "type": "string",
423
+ "default": "belowright 40vs",
424
+ "scope": "application",
425
+ "description": "Command used to open the changed-files TreeView for a commit."
426
+ },
427
+ "git.statusTree.splitCommand": {
428
+ "type": "string",
429
+ "default": "belowright 40vs",
430
+ "scope": "application",
431
+ "description": "Command used to open the Git status TreeView."
432
+ },
413
433
  "git.showCommitInFloating": {
414
434
  "type": "boolean",
415
435
  "default": false,