Randolph Voorhies
Randolph Voorhies
Yup, works perfectly without vi mode. It looks like it's the `\key1` binding to `\C-a` which goes to the beginning of the line in emacs mode, but just inserts a...
Things seem to work well if I just get rid of the ^A whenever we're in vi mode, e.g: ```bash # Key bindings. Before executing the main function, place the...
Hi @cherriesandwine unfortunately I haven't really thought about this code in the 10 years since I wrote it, so I'm not going to be a ton of help here. Want...
Hi @JaeseungYeom - you can define an external serialization function for the class. See here for details: http://uscilab.github.io/cereal/serialization_functions.html
It would be great if we could figure out how to add line numbers to errors as well. Ideally, the above error would read something like: `Cereal JSON serialization error....
Unfortunately, `CEREAL_CLASS_VERSION` needs a full type, which `Prior` is not (it's only a template definition). You can get this to work by manually defining `CEREAL_CLASS_VERSION(Prior, 1); /* ... */ CEREAL_CLASS_VERSION(Prior,...
@AzothAmmo Have you tried this? Does the `Version::version` actually get instantiated to trigger the `registerVersion` call when the compilation unit is loaded? I didn't think the compiler would actually do...
That's amazing! Just tested it with the Prior class, and it works great.
I have a WIP branch for support here: https://github.com/home-assistant/core/compare/dev...randvoorhies:core:tuya-ywcgq-tank-level-sensor I'm hoping I can get a friendly dev to review, as this will be my first contribution to HA.
I'm trying to pull in the fluentbit v2 metrics from fluentbit 3.1.3 into telegraf which uses the Go parser and am stuck because of this issue. It seems to only...