KillTheMule

Results 28 issues of KillTheMule

# General thoughts A lot of the API takes or returns a `Value`, and leaves it to the user to sort out what to put in or get out. Nvim-rs...

The feature flags `use_tokio` and `use_async-std` are incompatible (and will be incompatible with the planned `use_glib` as well). The reason is overlapping impl's of the [`Spawner`](https://github.com/KillTheMule/nvim-rs/blob/master/src/create/tokio.rs#L26) trait. On the one...

help wanted
runtimes

- **Naming** *(crate aligns with Rust naming conventions)* - [x] Casing conforms to RFC 430 ([C-CASE]) - [ ] Ad-hoc conversions follow `as_`, `to_`, `into_` conventions ([C-CONV]) - [ ]...

- [x] Figure out how plugins can quit - https://github.com/KillTheMule/nvim-rs/issues/2 - [ ] Rewrite the API to be type save, and hide `rmpv::Value` from the user - Can probably be...

From the Roadmap: > Consider making a difference between requests and notifications, and send out notifications with the proper message type, and don't wait for a response > > Does...

... were removed when asyncifying. Do we need them? Note that if neovim closes unexpectedly, the channel will be closed and all pending requests get sent an error, so we...

I've started a [PR](https://github.com/neovim/neovim/pull/8677) on the neovim repo to improve the situation for people who develop addons in lua. That somewhat prominently include you, so I'd be very glad if...

I might have missed it, but there does not seem to be a way to get the data validity setting of a cell from an ods document, is there? The...

There are iterators over cell data as well as the formulas behind the data, but there does not seem to be a way to associate those. By that I mean...

Hey, I'm in the process of making an async version of https://github.com/daa84/neovim-lib. One hurdle I'm facing is that msgpack-rust only support synchronous IO. It would be great (well, at least...