jvcs 1.5.1 → 1.5.3

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.
@@ -19,7 +19,8 @@ function startUI(state) {
19
19
  bg: "blue",
20
20
  bold: true,
21
21
  underline: true
22
- }
22
+ },
23
+ tags: true
23
24
  })
24
25
  screen.append(header)
25
26
 
@@ -38,7 +39,8 @@ function startUI(state) {
38
39
  style: {
39
40
  selected: { bg: "blue" },
40
41
  item: { fg: "white" }
41
- }
42
+ },
43
+ tags: true
42
44
  })
43
45
  screen.append(fileList)
44
46
 
@@ -74,7 +76,8 @@ function startUI(state) {
74
76
  keys: true,
75
77
  vi: true,
76
78
  scrollbar: { ch: "│", track: { bg: "black" }, style: { bg: "yellow" } },
77
- padding: { left: 1, right: 1 }
79
+ padding: { left: 1, right: 1 },
80
+ tags: true
78
81
  })
79
82
 
80
83
  const rightBox = blessed.box({
@@ -89,7 +92,8 @@ function startUI(state) {
89
92
  keys: true,
90
93
  vi: true,
91
94
  scrollbar: { ch: "│", track: { bg: "black" }, style: { bg: "yellow" } },
92
- padding: { left: 1, right: 1 }
95
+ padding: { left: 1, right: 1 },
96
+ tags: true
93
97
  })
94
98
 
95
99
  const aiBox = blessed.box({
@@ -104,7 +108,8 @@ function startUI(state) {
104
108
  keys: true,
105
109
  vi: true,
106
110
  scrollbar: { ch: "│", track: { bg: "black" }, style: { bg: "yellow" } },
107
- padding: { left: 1, right: 1 }
111
+ padding: { left: 1, right: 1 },
112
+ tags: true
108
113
  })
109
114
 
110
115
  function colorDiffContent(content, type) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jvcs",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "bin": {
5
5
  "jvcs": "index.js"
6
6
  },