nvim-oxi icon indicating copy to clipboard operation
nvim-oxi copied to clipboard

:link: Rust bindings to all things Neovim

Results 27 nvim-oxi issues
Sort by recently updated
recently updated
newest added

Maybe it's just me overlooking something but both traits in `nvim_types::conversion` are just a specialized version of `TryFrom`/`TryInto`. Is there a technical reason? Else I suggest to rewrite conversion.rs to...

If the test prints to stderr, it will be erroneously interpreted as a panic. Neovim also sometimes prints to stderr for some reason, which will be interpreted as a panic....

I'm pretty sure the `A` parameter for `Function` should be contravariant, but it is covariant because of `(PhantomData, PhantomData)`. Changing it to `PhantomData R>` should fix this

Add the possiblility to have custom configuration when running tests. i.e. amend the runtimepath with some folder containing a custom init script and maybe specify the pwd for the neovim...

enhancement

For a function that returns an `Err`, I would expect `[nvim_oxi::test]` to fail but it does not. This could be fixed by checking the return value here https://github.com/noib3/nvim-oxi/blob/master/crates/oxi-test/src/lib.rs#L154. It would...

enhancement

It would be nice to allow returning `mlua` objects from the lua module, for example userdata or coroutines. I think you could either make the `mlua` value pushable or use...

enhancement

Hi, I can provide more info/context soon but I just wanted to log it already in case anyone has a clue. I have a [toy project](https://github.com/melMass/echo.nvim) to test out nvim-oxi...