mirror of
https://github.com/zellij-org/zellij.git
synced 2026-09-22 08:02:38 +00:00
1.2 KiB
1.2 KiB
About
This is an example Zellij plugin in Rust. It can be used as a template to start developing your own plugins.
More about Zellij plugins: Zellij Documentation
Development
Note: you will need to have wasm32-wasip1 added to rust as a target to build the plugin. This can be done with rustup target add wasm32-wasip1.
With the Provided Layout
Run zellij -l zellij.kdl at the root of this repository. This will open a development environment that will help you develop the plugin inside Zellij.
It can also be used if you prefer developing outside of the terminal - in this case you should ignore the $EDITOR pane and use your IDE instead.
Otherwise
- Build the project:
cargo build - Load it inside a running Zellij session:
zellij action start-or-reload-plugin file:target/wasm32-wasip1/debug/rust-plugin-example.wasm - Repeat on changes (perhaps with a
watchexecor similar command to run on fs changes).