mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
remove unused import
This commit is contained in:
parent
6ba082697d
commit
8681d47292
3 changed files with 3 additions and 6 deletions
0
editor.rs
Normal file
0
editor.rs
Normal file
|
@ -1,3 +1,5 @@
|
||||||
|
use crate::{keymap, Args};
|
||||||
|
use anyhow::Error;
|
||||||
use crossterm::{
|
use crossterm::{
|
||||||
cursor,
|
cursor,
|
||||||
cursor::position,
|
cursor::position,
|
||||||
|
@ -7,15 +9,11 @@ use crossterm::{
|
||||||
terminal::{self, disable_raw_mode, enable_raw_mode},
|
terminal::{self, disable_raw_mode, enable_raw_mode},
|
||||||
};
|
};
|
||||||
use futures::{future::FutureExt, select, StreamExt};
|
use futures::{future::FutureExt, select, StreamExt};
|
||||||
|
use helix_core::{state::coords_at_pos, Buffer, State};
|
||||||
use std::io::{self, stdout, Write};
|
use std::io::{self, stdout, Write};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use anyhow::Error;
|
|
||||||
|
|
||||||
use crate::{keymap, Args};
|
|
||||||
use helix_core::{state::coords_at_pos, Buffer, State};
|
|
||||||
|
|
||||||
pub struct BufferComponent<'a> {
|
pub struct BufferComponent<'a> {
|
||||||
x: u16,
|
x: u16,
|
||||||
y: u16,
|
y: u16,
|
||||||
|
|
|
@ -5,7 +5,6 @@ use crossterm::{
|
||||||
};
|
};
|
||||||
use helix_core::commands::{self, Command};
|
use helix_core::commands::{self, Command};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::io::{stdout, Write};
|
|
||||||
|
|
||||||
// Kakoune-inspired:
|
// Kakoune-inspired:
|
||||||
// mode = {
|
// mode = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue