Commit ea37d3e
fix(purge): remove 60-char hard cap on path display width (issue #564)
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>1 parent cb2eb10 commit ea37d3e
1 file changed
+0
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1175 | 1175 | | |
1176 | 1176 | | |
1177 | 1177 | | |
1178 | | - | |
1179 | 1178 | | |
1180 | 1179 | | |
1181 | 1180 | | |
| |||
1273 | 1272 | | |
1274 | 1273 | | |
1275 | 1274 | | |
1276 | | - | |
1277 | 1275 | | |
1278 | 1276 | | |
1279 | 1277 | | |
| |||
0 commit comments