Back to Wezterm

wezterm.truncate_right

docs/config/lua/wezterm/truncate_right.md

latest450 B
Original Source

wezterm.truncate_right(string, max_width)

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

Returns a copy of string that is no longer than max_width columns (as measured by wezterm.column_width).

Truncation occurs by reemoving excess characters from the right end of the string.

For example, wezterm.truncate_right("hello", 3) returns "hel",

See also: wezterm.truncate_left, wezterm.pad_left.