emacs-module-rs icon indicating copy to clipboard operation
emacs-module-rs copied to clipboard

Rust binding and tools for Emacs's dynamic modules

Results 25 emacs-module-rs issues
Sort by recently updated
recently updated
newest added

`emacs` v0.18.0 was released with commit a9b573c3ef443e9adf04cfc349ac7b3bc91b28e2. However, the `0.18.0` tag on this repo points to commit fbb0c7af210b50fdacbce809567e3995c6cc1d2c, the commit for v0.17.0. It should probably be changed to the former.

I am playing around with exposing some of Rust's `rayon` crate to Emacs. I've started with attempting to implement `join`: ```rust #[emacs::defun] fn join, fb: Value {} unsafe impl {}...

I should probably get off my butt and try implementing some of these myself eh? Haha. Anyway, this seems like another logical instance to have. Off the top of my...

Thanks again for the cool library. General question: should `into_rust::()` succeed for non-float literals like `1`? Currently it fails, but I'm not sure what users should expect in general here....

Hi there, this is a really cool library and I'm excited to speed up my Emacs with Rust. I'm having trouble figuring out how to send Elisp lists to my...

Hi, I'm trying to write some elisp bindings to a rust library and would like to benefit from live reloading. Looking at the workflow shown in [magit-libgit2](https://github.com/ubolonton/magit-libgit2/), I've: - Copied...

A "String" in Elisp VM can be used to present a byte slice `Vec`, not only a regular string. We can enable this conversion for the convenience. And we can...

waiting for external changes

According to https://rust-lang.github.io/api-guidelines/naming.html. I think we'd better to rename `make_global_ref` to `to_global_ref` to help user discover this API. What's your opinion?

enhancement

I'm curious if someone has made a Serde like serializer/deserializer for emacs-module-rs or if that's something that might be possible to implement?

question