diff options
author | Jan Hrastnik | 2020-06-24 19:03:38 +0000 |
---|---|---|
committer | Jan Hrastnik | 2020-06-24 19:03:38 +0000 |
commit | 8681d472928ff3d91508e11deda19b16c4694446 (patch) | |
tree | 9cbb371904ad18baa248871675e5037bf4941196 | |
parent | 6ba082697d4a930d4114e950a212f115bace47e9 (diff) |
remove unused import
-rw-r--r-- | editor.rs | 0 | ||||
-rw-r--r-- | helix-term/src/editor.rs | 8 | ||||
-rw-r--r-- | helix-term/src/keymap.rs | 1 |
3 files changed, 3 insertions, 6 deletions
diff --git a/editor.rs b/editor.rs new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/editor.rs diff --git a/helix-term/src/editor.rs b/helix-term/src/editor.rs index 7b3e215a..889eaa4c 100644 --- a/helix-term/src/editor.rs +++ b/helix-term/src/editor.rs @@ -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, diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 44f4fc95..c7da0c89 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -5,7 +5,6 @@ use crossterm::{ }; use helix_core::commands::{self, Command}; use std::collections::HashMap; -use std::io::{stdout, Write}; // Kakoune-inspired: // mode = { |