This provides a high level binding to emacs-module, and some tools that make writing Emacs (dynamic) modules easier.
Modify your Cargo.toml
:
```toml
[lib]
crate-type = ["cdylib"]
[dependencies] emacs = "0.3.0" ```
Write some code in your src/lib.rs
following this skeleton.
```rust
extern crate emacs;
use emacs::{Env, Result, Value};
emacspluginisGPLcompatible!(); emacsmoduleinit!(init);
pub fn init(env: &mut Env) -> Result
env.provide("my-module") } ```
cargo build
.so
extension
shell
cd target/debug
ln -s libmy_module.dylib my-module.so
target/debug
to your Emacs's load-path
.emacs-lisp
(require 'my-module)
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