Finish members base info table.

This commit is contained in:
Dominik Pantůček 2023-03-23 16:56:07 +01:00
parent 8f378d57c9
commit 2969a2833c
5 changed files with 90 additions and 5 deletions

View file

@ -358,11 +358,21 @@ Generic highlight of given text. Defaults to bold blue text.
(ansi-string-length str)
* ```str``` string that may contain ANSI CSI SGR sequences
* ```str``` - string that may contain ANSI CSI SGR sequences
Returns the string length in characters without any ANSI CSI SGR
sequences contained.
(ansi-paragraph-format str width)
* ```str``` - a string that may contain ANSI CSI SGR sequences
* ```width``` - a number representing themaximum number of characters per line
If the string ```str``` is longer than the supplied ```width```,
splits it into multiple lines on word boundaries to wrap it
nicely. The resulting string is free of ANSI CSI SGR sequences and may
contain newline characters.
### Command Line parsing
Generic syntax-based implementation of command-line options parsing