keymap macros

This commit is contained in:
🪞👃🪞 2024-06-18 04:37:58 +03:00
parent d39cce271f
commit a50e022ab6
8 changed files with 233 additions and 199 deletions

View file

@ -12,7 +12,7 @@ impl Plugin {
}
}
pub fn process (state: &mut Plugin, client: &Client, scope: &ProcessScope) -> Control {
pub fn process (_: &mut Plugin, _: &Client, _: &ProcessScope) -> Control {
Control::Continue
}
@ -31,6 +31,6 @@ pub fn render (state: &Plugin, buf: &mut Buffer, Rect { x, y, width, height }: R
Ok(Rect { x, y, width: 40, height: 7 })
}
pub fn handle (state: &mut Plugin, event: &AppEvent) -> Result<(), Box<dyn Error>> {
pub fn handle (_: &mut Plugin, _: &AppEvent) -> Result<(), Box<dyn Error>> {
Ok(())
}