Emacs Module in Rust

This provides a high level binding to emacs-module, and some tools that make writing Emacs (dynamic) modules easier.

Writing a Module

Live Reloading

Emacs does not support unloading modules. Live reloading thus requires a custom module loader. rs-module is one such loader (which itself is a module that must be loaded by Emacs's normal loading mechanism). See load.sh.

Sample Modules

test-module uses most of the provided features.

Development