This provides a high-level binding to emacs-module
.
Code for a minimal module looks like this:
```rust extern crate libc;
extern crate emacs;
use emacs::{Env, CallEnv, Result, Value};
emacspluginisGPLcompatible!(); emacsmoduleinit!(init);
fn init(env: &Env) -> Result
emacs_export_functions! {
env, "greeting-", {
"say-hello" => (hello, 1..1)
}
}
env.provide("greeting")
} ```
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.
test-module uses most of the provided features.
shell
cargo build --all
shell
bin/test.sh
cargo-watch
):
shell
cargo watch -x 'build --all' -s bin/test.sh