diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index f759d591e..d891b5d98 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -22,7 +22,6 @@ use crate::{ use log::{error, warn}; use std::{ - fmt::Debug, io::{stdin, stdout, Write}, sync::Arc, time::{Duration, Instant}, diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 3d372966b..3774756ec 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -309,7 +309,7 @@ pub struct Editor { pub config_events: SelectAll>, } -#[derive(Debug)] +#[derive(Debug, Clone)] pub enum ConfigEvent { Refresh, Update(Config),