aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/editor.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-term/src/editor.rs b/helix-term/src/editor.rs
index a6de3e0b..e019b5ba 100644
--- a/helix-term/src/editor.rs
+++ b/helix-term/src/editor.rs
@@ -8,8 +8,9 @@ use crossterm::{
style::{Color, Print, SetForegroundColor},
terminal::{self, disable_raw_mode, enable_raw_mode},
};
-use futures::{future::FutureExt, select, StreamExt};
+
use helix_core::{state::coords_at_pos, state::Mode, State};
+use smol::prelude::*;
use std::io::{self, stdout, Write};
use std::path::PathBuf;
use std::time::Duration;