On Tue, Jul 26, 2022 at 08:30:27PM +0200, Fourhundred Thecat wrote: >> On 2022-07-26 19:38, Dennis Preiser wrote: >> set size_show_mb >> index-format-hook size_flags "~z -1M" " " >> index-format-hook size_flags "~z >1M" "%5c" >> index_format="%{%Y-%b-%d %H:%M} %?X?(%X)& ? %-25.25F %.96s %> >> %@size_flags@" > > thank you, that works beautifully. But "set size_show_mb" seems to have > no effect. It still shows small size in KB.
Thats why I've used '-1M' and '>1M'. Only values obove 1MB will be affected by size_show_mb. If you use, for example, '-100k' and '>100k', values below 1MB will be shown as kB. At least that is how I understand the documentation. Dennis