The main easy to use crate for creating Anyrun plugins.
The plugin API is intentionally very simple to use. This is all you need for a plugin:
Cargo.toml
:
```toml
[lib] crate-type = ["cdylib"] # Required to build a dynamic library that can be loaded by anyrun
[dependencies] anyrun-plugin = { git = "https://github.com/Kirottu/anyrun" } abi_stable = "0.11.1"
```
lib.rs
:
```rs use abistable::stdtypes::{RString, RVec, ROption}; use anyrun_plugin::*;
fn init(config_dir: RString) { // Your initialization code. This is run in another thread. // The return type is the data you want to share between functions }
fn info() -> PluginInfo { PluginInfo { name: "Demo".into(), icon: "help-about".into(), // Icon from the icon theme } }
fn getmatches(input: RString) -> RVecinput
argument.
// The data
is a mutable reference to the shared data type later specified.
vec![Match {
title: "Test match".into(),
icon: ROption::RSome("help-about".into()),
use
fn handler(selection: Match) -> HandleResult { // Handle the selected match and return how anyrun should proceed HandleResult::Close } ```