User Guide | Change Log | Examples
This provides a high-level binding to emacs-module
, Emacs's support for dynamic modules.
Code for a minimal module looks like this:
```rust use emacs::{defun, Env, Result, Value};
emacs::pluginisGPL_compatible!();
fn init(_: &Env) -> Result<()> { Ok(()) }
fn say_hello(env: &Env, name: String) -> Result
emacs-lisp
(require 'greeting)
(greeting-say-hello "Emacs")
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.
Note: This doesn't work on macOS 10.13+ (High Sierra and up). See Rust's issue #28794.
shell
cargo build --all
shell
bin/test.sh
cargo-watch
):
shell
cargo watch -x 'build --all' -s bin/test.sh