Travis
Travis
An example from std.os.windows, everything after the following line is highlighted as a string because it sees the end quote as escaped: ```js const prefix_u8 = "\\DosDevices\\"; ```
I added the steps I had to take to get it running on macOS to the README.
Another proposal, this one will wrap the description text if the total line length is longer than `max-width`. Also fixes the padding for lines after the first line of the...
A bug fix this time: `i` was incremented to add the length of the opt before `last-newline` was set, when `last-newline` should've been set to the index before the current...
This might be me misunderstanding the intent, but when adding a newline after a long option name, it's indented like this: ``` -p, --path SOME_LONG_TEXT_HERE This is the path to...
Hash sets can be currently be done using `AutoHashMap(K, void)` but I'd argue that an actual hash set type would make working with them much nicer. Using a hash map,...
The inputs being declared `(simple-array character)` was causing me to run into some incorrect behavior on SBCL 2.0.11, but changing them to `simple-string`s fixed it. I also updated a couple...