Fix codespell error: 'ags' flagged as misspelling in hint bar

Restructure the hint bar string so shortcut letters and their labels
are separate tokens ('t' + 'tags') instead of split across Rich markup
tags ('t' + 'ags') which codespell flagged as a misspelling.
This commit is contained in:
Hardik Zinzuvadiya 2026-03-15 19:34:26 +05:30
parent 645923ddbd
commit 73980f1130

View file

@ -317,11 +317,11 @@ def build_menu():
# ── Claude-style dual-line prompt area ──
console.print(Rule(style="dim magenta"))
console.print(
" [dim cyan]/[/dim cyan][dim]search "
"[/dim][dim cyan]t[/dim cyan][dim]ags "
"[/dim][dim cyan]r[/dim cyan][dim]ecommend "
"[/dim][dim cyan]?[/dim cyan][dim]help "
"[/dim][dim cyan]q[/dim cyan][dim]uit[/dim]"
" [dim cyan]/[/dim cyan][dim]search[/dim] "
"[dim cyan]t[/dim cyan] [dim]tags[/dim] "
"[dim cyan]r[/dim cyan] [dim]recommend[/dim] "
"[dim cyan]?[/dim cyan] [dim]help[/dim] "
"[dim cyan]q[/dim cyan] [dim]quit[/dim]"
)