Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .jules/palette.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 2026-07-22 - Screen Reader Friendly Navigation Hints
**Learning:** Screen readers in CLI environments (like Ink) rely on raw text output and often fail to announce symbolic characters (e.g., up/down arrows, return symbol) properly, causing accessibility regressions.
**Action:** Use visually concise but screen-reader-friendly descriptive text (e.g., 'Up/Down', 'Enter') instead of symbols for keyboard navigation hints.
2 changes: 1 addition & 1 deletion src/cli/ui/components/CommandSuggestionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const CommandSuggestionList: React.FC<CommandSuggestionListProps> = ({
</Box>
<Box>
<Text color={COLORS.text.muted} dimColor>
↑↓ nav · select · esc close
Up/Down nav · Enter select · Esc close
</Text>
</Box>
</Box>
Expand Down
Loading