emacs module rs:用于emacs module的Rust绑定和工具(Emacs的动态模块支持) 源码
Rust中的Emacs模块 | 这提供了对emacs-module的高级绑定, emacs-module是Emacs对动态模块的支持。 最小模块的代码如下所示: use emacs :: {defun, Env, Result , Value}; emacs :: plugin_is_GPL_compatible! (); #[emacs::module(name = "greeting" )] fn init (_: & Env) -> Result <()> { Ok (()) } #[defun] fn say_hello (env: & Env, name: String
用户评论