jvcs 1.5.4 → 1.5.5
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.
|
@@ -11,19 +11,19 @@ function startUI(state) {
|
|
|
11
11
|
// ---------------------------------------
|
|
12
12
|
const header = blessed.box({
|
|
13
13
|
top: 0,
|
|
14
|
-
height:
|
|
14
|
+
height: 4, // taller header
|
|
15
15
|
width: "100%",
|
|
16
|
-
content: `
|
|
17
|
-
{bold}{white-fg}{blue-bg} JVCS DIFF VIEW {/blue-bg}{/white-fg}{/bold} Mode: {yellow-fg}${state.mode}{/yellow-fg} | ↑↓ Navigate | Enter Open | Esc Back | Tab Switch | Q Quit
|
|
18
|
-
`,
|
|
19
16
|
tags: true,
|
|
20
17
|
style: {
|
|
21
|
-
bg: "blue"
|
|
18
|
+
bg: "blue",
|
|
19
|
+
fg: "white"
|
|
22
20
|
},
|
|
23
|
-
padding: {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
padding: { left: 1, right: 1 },
|
|
22
|
+
content: `
|
|
23
|
+
{bold}{white-fg} JVCS DIFF VIEW {/white-fg}{/bold} Mode: {yellow-fg}${state.mode}{/yellow-fg}
|
|
24
|
+
|
|
25
|
+
{cyan-fg}↑↓ Navigate | Enter Open | Esc Back | Tab Switch | Q Quit{/cyan-fg}
|
|
26
|
+
`
|
|
27
27
|
})
|
|
28
28
|
screen.append(header)
|
|
29
29
|
|