Skip to main content

oxi_module

Attribute Macro oxi_module 

Source
#[oxi_module]
Expand description

Marks the plugin entrypoint.

§Examples

use nvim_oxi as nvim;

#[nvim::module]
fn foo() -> nvim::Result<()> {
    Ok(())
}