I want to pad a format string to a certain length. For example, the Tmux Battery plugin introduces the battery_percentage
format string. I can use this in the status bar as #{battery_percentage}
. The battery percentage values can be:
- Between 0% and 9% (One Digit).
- Between 11% and 99% (Two Digits).
- Exactly 100% (Three Digits).
I want the format string to always be displayed 3 digits, padded with spaces at the end, how can I achieve that?
I saw that there is the format #{pN:variable}
in this page, but it did not work when I tried to use it with format strings, even though at the end they are variables. Maybe I just did not know how to use it, I don't know...