From 73980f1130133d2a5f194c04f8ffd1405b28aea6 Mon Sep 17 00:00:00 2001 From: Hardik Zinzuvadiya <25708027+Z4nzu@users.noreply.github.com> Date: Sun, 15 Mar 2026 19:34:26 +0530 Subject: [PATCH] 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. --- hackingtool.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hackingtool.py b/hackingtool.py index d499b20..d2278f3 100755 --- a/hackingtool.py +++ b/hackingtool.py @@ -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]" )