@bramblex/codex-workbench 0.1.10 → 0.1.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 +1 -1
- package/src/ui/workbench.js +3 -2
package/package.json
CHANGED
package/src/ui/workbench.js
CHANGED
|
@@ -629,12 +629,13 @@ async function runWorkbench() {
|
|
|
629
629
|
updateFocusStyles();
|
|
630
630
|
});
|
|
631
631
|
|
|
632
|
-
|
|
632
|
+
// blessed handles up/down natively via keys:true; only bind j/k
|
|
633
|
+
projectsList.key(['j'], () => {
|
|
633
634
|
if (promptOpen()) return;
|
|
634
635
|
selectGroup(groupIndex + 1);
|
|
635
636
|
});
|
|
636
637
|
|
|
637
|
-
projectsList.key(['k'
|
|
638
|
+
projectsList.key(['k'], () => {
|
|
638
639
|
if (promptOpen()) return;
|
|
639
640
|
selectGroup(groupIndex - 1);
|
|
640
641
|
});
|