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")
shell
bin/build
shell
bin/test
cargo-watch
):
shell
bin/test watch
On Windows, use PowerShell to run the corresponding .ps1
scripts.