title: wezterm.pad_left tags:

  • utility
  • string

wezterm.pad_left(string, min_width)

{{since('20210502-130208-bff6815d')}}

Returns a copy of string that is at least min_width columns (as measured by wezterm.column_width).

If the string is shorter than min_width, spaces are added to the left end of the string.

For example, wezterm.pad_left("o", 3) returns " o".

See also: wezterm.truncate_left, wezterm.pad_right.