term size
for platform
Returns a record containing the number of columns (width) and rows (height) of the terminal.
Signature
> term size {flags}
Input/output types:
input | output |
---|---|
nothing | record<columns: int, rows: int> |
Examples
Return the columns (width) and rows (height) of the terminal
> term size
Return the columns (width) of the terminal
> (term size).columns
Return the rows (height) of the terminal
> (term size).rows