@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bramblex/codex-workbench",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Terminal workbench for browsing and managing local and SSH Codex sessions.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -629,12 +629,13 @@ async function runWorkbench() {
629
629
  updateFocusStyles();
630
630
  });
631
631
 
632
- projectsList.key(['j', 'down'], () => {
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', 'up'], () => {
638
+ projectsList.key(['k'], () => {
638
639
  if (promptOpen()) return;
639
640
  selectGroup(groupIndex - 1);
640
641
  });