diff options
Diffstat (limited to 'helix-term/src/job.rs')
-rw-r--r-- | helix-term/src/job.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/job.rs b/helix-term/src/job.rs index 4b59c81c..c2873513 100644 --- a/helix-term/src/job.rs +++ b/helix-term/src/job.rs @@ -3,7 +3,7 @@ use helix_view::Editor; use crate::compositor::Compositor; use futures_util::future::{self, BoxFuture, Future, FutureExt}; -use futures_util::stream::{self, FuturesUnordered, Select, StreamExt}; +use futures_util::stream::{FuturesUnordered, StreamExt}; pub type Callback = Box<dyn FnOnce(&mut Editor, &mut Compositor) + Send>; pub type JobFuture = BoxFuture<'static, anyhow::Result<Option<Callback>>>; |