mirror of
https://github.com/CyberSecurityUP/NeuroSploit.git
synced 2026-07-03 09:57:50 +02:00
78b638a956
The prompt passed to rustyline embedded ANSI escapes AND a newline (dim context line + colored `neurosploit›`), so rustyline mis-measured the prompt width and cursor position — typing/backspace/history/cursor got garbled in a real terminal (fine when piped, which has no line editor). Now: the dim context line is printed with println!() ABOVE the prompt, the readline prompt is plain "neurosploit› " (correct width), and the magenta color is applied via Highlighter::highlight_prompt (display-only, doesn't affect width).