Building support and size support.

This commit is contained in:
2026-07-21 23:40:50 -04:00
parent 68969322d0
commit 1a1364ec7c
4 changed files with 41 additions and 12 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ format_entry( const Entry &entry, const std::size_t widest )
{
oss << "1;36;96";
}
oss << 'm' << std::setw( widest + 8 ) << std::left << entry.name;
oss << 'm' << std::setw( widest + C::filePadding ) << std::left << entry.name;
return std::move( oss ).str();
}