mirror of https://github.com/sgoudham/neovide.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
934 B
Rust
38 lines
934 B
Rust
use async_trait::async_trait;
|
|
use log::trace;
|
|
use nvim_rs::{compat::tokio::Compat, Handler, Neovim};
|
|
use rmpv::Value;
|
|
use tokio::process::ChildStdin;
|
|
use tokio::task;
|
|
|
|
use super::events::handle_redraw_event_group;
|
|
use crate::settings::SETTINGS;
|
|
|
|
#[derive(Clone)]
|
|
pub struct NeovimHandler();
|
|
|
|
#[async_trait]
|
|
impl Handler for NeovimHandler {
|
|
type Writer = Compat<ChildStdin>;
|
|
|
|
async fn handle_notify(
|
|
&self,
|
|
event_name: String,
|
|
arguments: Vec<Value>,
|
|
_neovim: Neovim<Compat<ChildStdin>>,
|
|
) {
|
|
trace!("Neovim notification: {:?}", &event_name);
|
|
task::spawn_blocking(move || match event_name.as_ref() {
|
|
"redraw" => {
|
|
handle_redraw_event_group(arguments);
|
|
}
|
|
"setting_changed" => {
|
|
SETTINGS.handle_changed_notification(arguments);
|
|
}
|
|
_ => {}
|
|
})
|
|
.await
|
|
.ok();
|
|
}
|
|
}
|