Skip to content

Commit d669b87

Browse files
committed
docs(help): split reorder rows by direction, fix indent overflow
The combined "Shift+→ / Shift+←" key column overflowed the 14-char budget and wrapped onto two lines, breaking the table layout. Two adjustments: - Split reorder into one row per direction (parallel to the existing "j / Down" / "k / Up" rows in NAVIGATION) and surface the Shift+↑ / Shift+↓ alternates that the bindings already accept. - Compact the indent row to "Shift+→/←" so it fits on one line. TUI reference doc gets the same direction split for consistency.
1 parent 50c1cc7 commit d669b87

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

internal/ui/help.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,9 @@ func (h *HelpOverlay) View() string {
166166
// Define help sections
167167
newKeys := h.keyPair(hotkeyNewSession, hotkeyQuickCreate, "n/N")
168168
forkKeys := h.keyPair(hotkeyQuickFork, hotkeyForkWithOptions, "f/F")
169-
reorderKeys := "K / J"
169+
reorderUpKeys := "K / Shift+↑"
170+
reorderDownKeys := "J / Shift+↓"
171+
indentKeys := "Shift+→/←"
170172
searchKey := h.key(hotkeySearch, "/")
171173
settingsKey := h.key(hotkeySettings, "S")
172174
helpKey := h.key(hotkeyHelp, "?")
@@ -245,8 +247,9 @@ func (h *HelpOverlay) View() string {
245247
{previewKey, "Toggle preview mode (output/stats/both)"},
246248
{unreadKey, "Mark unread"},
247249
{quickApproveKey, "Quick approve (send '1' to Claude)"},
248-
{reorderKeys, "Reorder up/down (auto-promote at edge)"},
249-
{"Shift+→ / Shift+←", "Indent / outdent (in group)"},
250+
{reorderUpKeys, "Reorder up (auto-promote at edge)"},
251+
{reorderDownKeys, "Reorder down (auto-promote at edge)"},
252+
{indentKeys, "Indent / outdent (in group)"},
250253
{forkKeys, "Fork session (Claude only)"},
251254
{copyKey, "Copy output to clipboard"},
252255
{"C", "Copy preview info (Repo / Path / Branch)"},

skills/agent-deck/references/tui-reference.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Complete reference for agent-deck Terminal UI features.
2222
| `n` | New session (inherits current group) |
2323
| `r` | Rename session or group |
2424
| `R` | Restart session (reloads MCPs) |
25-
| `K` / `J` | Move item up/down (auto-promotes a sub-session to top-level when at the parent's first/last child) |
25+
| `K` / `Shift+↑` | Move item up (auto-promotes a sub-session to top-level when at the parent's first child) |
26+
| `J` / `Shift+↓` | Move item down (auto-promotes a sub-session to top-level when at the parent's last child) |
2627
| `Shift+→` / `Shift+←` | Indent / outdent within current group (single-level nesting) |
2728
| `M` | Move session to different group |
2829
| `m` | Open MCP Manager (Claude/Gemini) |

0 commit comments

Comments
 (0)