Enrico Borba

Results 78 comments of Enrico Borba

Thoughts on this idea? https://github.com/enricozb/quick-xml/commit/7b4b3f851a50ae9dbb45d54edfdc7c2374ec59d0 Specifically, I'm adding a new special field name `$raw` that can only deserialize into a `String`, and just writes all events, until the expected end...

Got it. I saw [that private newtype name](https://github.com/serde-rs/json/blob/0131ac68212e8094bd14ee618587d731b4f9a68b/src/raw.rs#L292), but wasn't sure why it mattered. I see now that the json deserializer looks for this tag. I'll take a stab at...

Additionally, I'm not sure if we should capture the surrounding tags or not. What should this print: ```rust struct AnyName { root: RawValue, } const xml: &str = " ";...

responding to ping. I can't contribute. I was just trying to help solve that specific wheel issue, I'm not doing anything on M1 or ARM.

Thanks for sharing your `kakrc`, I got a few reports of this not working at all on macOS, any chance that's what you're running? If not, what environment are you...

Sorry for the delay, took me a while to get ahold of a mac. I just pushed 421578d27130f110a21cd2f4cdf292d7185df843 which should fix your issue. Please `:plug-update` and tell me if it's...

When I tested it out, the kitty and terminal.app render `│` without issue, but they have bizarre behavior when I insert `│` in the statusline. They render `~T~B`, which look...

Ok so, powerline likely sets up a `modelinefmt` once, whereas I override it for each buffer, and periodically due to some hooks (when buffers close or new ones open). Kakoune...

Here's a dockerfile that reproduces the error: ``` FROM python:alpine3.18 RUN apk update && apk add --no-cache bash curl unzip WORKDIR /dependencies ARG SCANCODE_VERSION=32.0.0rc4 RUN curl -L \ https://github.com/nexB/scancode-toolkit/releases/download/v${SCANCODE_VERSION}/scancode-toolkit-v${SCANCODE_VERSION}_py3.8-linux.tar.gz \...

Good to know that Alpine isn't supported. I was actually able to get past this error by CD'ing into the configure directory before running it. The glob pattern `scancode_toolkit*.whl` won't...