Nate Weaver

Results 54 comments of Nate Weaver

Thanks; I wasn’t as thorough as I should have been.

I can verify that specifying the font manually does the trick.

I can't reproduce this, either with a preexisting project or a brand new one. 🤔

If that's the case, does inserting a `--` work? E.g., `swift run -- MyCommand --verbose`

I started work on something similar (for `CaseIterable`), but I'm worried I'm not finding all the possible call points.

As a potential workaround, you mayb be able to set the `Type` field in the breakpoint to the name of the error types you want to catch, though admittedly this...

Looks like there’s a way to register custom encodingUTF-8 handlers with libxml2, which it will use when it finds a registered encoding name in the XML preamble (or HTML meta...

I like the libxml version just because it takes care of the detection from the declaration in the document. Detecting encodings can be tough; a lot of byte strings are...

I don't think you want to do most of that range math; AIUI the `bytes` array always starts at a `0` index, not relative to the whole data (since it's...

Oh, you might also be able to specify `const unsigned char *bytes` as the type in the block declaration to avoid all the casting (if the compiler doesn't complain). Not...