remove unused import

imgbot
Jan Hrastnik 4 years ago
parent 6ba082697d
commit 8681d47292

@ -1,3 +1,5 @@
use crate::{keymap, Args};
use anyhow::Error;
use crossterm::{
cursor,
cursor::position,
@ -7,15 +9,11 @@ use crossterm::{
terminal::{self, disable_raw_mode, enable_raw_mode},
};
use futures::{future::FutureExt, select, StreamExt};
use helix_core::{state::coords_at_pos, Buffer, State};
use std::io::{self, stdout, Write};
use std::path::PathBuf;
use std::time::Duration;
use anyhow::Error;
use crate::{keymap, Args};
use helix_core::{state::coords_at_pos, Buffer, State};
pub struct BufferComponent<'a> {
x: u16,
y: u16,

@ -5,7 +5,6 @@ use crossterm::{
};
use helix_core::commands::{self, Command};
use std::collections::HashMap;
use std::io::{stdout, Write};
// Kakoune-inspired:
// mode = {

Loading…
Cancel
Save