Emacs Module Bindings

This crate provides access to the new Emacs module functionality recently introduced in Emacs 25.

Usage aka How to write an oxidized Emacs module in a few easy steps

  1. Create a new Cargo lib project, say my_fancy_module
  2. Open up Cargo.toml in an editor, and:
  3. Add the following to your src/lib.rs: ```` Rust extern crate libc;

    [macro_use]

    extern crate emacs;

    use emacs::{Env, Result, EmacsVal};

    emacspluginisGPLcompatible!(); emacsmoduleinit!(init);

    pub fn init(env: &mut Env) -> Result { // Add any other things you need the module to do here

    env.provide("my-fancy-module") } ````

  4. Execute cargo build
  5. If you're on OS X, copy target/debug/libmy_fancy_module.dylib to target/debug/libmy_fancy_module.so
  6. Load it in emacs with (require 'my-fancy-module "/path/to/libmy_fancy_module.so"). Note that this requires Emacs to be configured and compiled with the --with-modules flag.

For a more elaborate example, check out test-module.

Development