mirror of
https://github.com/tw93/Mole.git
synced 2026-03-22 20:50:06 +00:00
The path column in 'mo purge' selection was capped at 60 characters regardless of terminal width. On wide terminals (120+ cols) this caused long project paths like ~/GitHub/Ulama/transformer-project to be truncated unnecessarily to ~17 visible characters. Remove the hard 60-char cap and let the available terminal space be the only upper bound, which is already computed as: available_for_path = terminal_width - fixed_overhead Paths now use as much space as the terminal allows while still keeping the size and artifact-type columns readable. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>