Justin Whear
Justin Whear
Do you have a timeline for adding support for the new spec? I'm looking at playing with Neovim's msgpack-rpc interface, but it requires spec v5 support.
I tried parsing some data from Neovim and got segfaults, so I reckon it's due to it using the newer spec. Are segfaults accepted behavior for spec-mismatch, or would you...
Opened #45
I am I right in assuming that msgpack-d doesn't currently support the Ext type family? I'm using msgpack-rpc with an API and it works fine for many calls, but when...
This *appears* to be due to these factors colliding: * Javascript string literals are stored with escaping (needs confirmation but the code appears to assume it) * JSON string literals...
Updated diagnosis: Javascript and JSON literals are stored differently, but it's not a matter of escaping: both are stored decoded. However, Javascript literals are stored as UTF16 and thus hit...
This is at least partially resolved by #228
Thanks to @mikdusan for adding my use case to this issue. I thought I'd follow up with a few specifics to reinforce his suggestion. The background is that I'm trying...
Just in case anyone is trying to do something similar, I hacked around this for the time being by making my wrapper scripts do a bit of translation work: ```bash...
`os.cpus` is implemented but only for Linux at the moment