codewalk 0.1.3 → 0.1.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.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21213,7 +21213,7 @@ class TreeView {
|
|
|
21213
21213
|
});
|
|
21214
21214
|
const totalChanges = this.state.reasoningGroups.length;
|
|
21215
21215
|
const headerText = new TextRenderable(this.renderer, {
|
|
21216
|
-
content: ` codewalk - ${this.state.branch} (${totalChanges} logical
|
|
21216
|
+
content: ` codewalk - ${this.state.branch} (${totalChanges} logical change${totalChanges !== 1 ? "s" : ""})`,
|
|
21217
21217
|
fg: "#88ccff",
|
|
21218
21218
|
flexGrow: 1
|
|
21219
21219
|
});
|
|
@@ -21409,7 +21409,7 @@ class TreeView {
|
|
|
21409
21409
|
const totalItems = this.selectableItems.length;
|
|
21410
21410
|
const currentPos = this.state.selectedIndex + 1;
|
|
21411
21411
|
const footerText = new TextRenderable(this.renderer, {
|
|
21412
|
-
content:
|
|
21412
|
+
content: `\u2191/\u2193 or scroll: navigate \u2502 Enter/click: expand \u2502 q: quit [${currentPos}/${totalItems}]`,
|
|
21413
21413
|
fg: "#888888"
|
|
21414
21414
|
});
|
|
21415
21415
|
this.footerBox.add(footerText);
|