mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Drop tui.
This commit is contained in:
parent
c17045ed07
commit
57c2046070
2 changed files with 1 additions and 6 deletions
|
@ -29,4 +29,4 @@ futures = { version = "0.3.5", default-features = false, features = ["std"] }
|
||||||
smol = "0.1.10"
|
smol = "0.1.10"
|
||||||
num_cpus = "1.13.0"
|
num_cpus = "1.13.0"
|
||||||
piper = "0.1.2"
|
piper = "0.1.2"
|
||||||
tui = { version = "0.9.5", default-features = false }
|
# tui = { version = "0.9.5", default-features = false }
|
||||||
|
|
|
@ -11,8 +11,6 @@ use futures::{future::FutureExt, select, StreamExt};
|
||||||
use smol::Timer;
|
use smol::Timer;
|
||||||
// use futures_timer::Delay;
|
// use futures_timer::Delay;
|
||||||
|
|
||||||
use tui::{backend::CrosstermBackend, Terminal};
|
|
||||||
|
|
||||||
use crossterm::{
|
use crossterm::{
|
||||||
cursor::position,
|
cursor::position,
|
||||||
event::{DisableMouseCapture, EnableMouseCapture, Event, EventStream, KeyCode},
|
event::{DisableMouseCapture, EnableMouseCapture, Event, EventStream, KeyCode},
|
||||||
|
@ -66,9 +64,6 @@ fn main() -> Result<()> {
|
||||||
let mut stdout = stdout();
|
let mut stdout = stdout();
|
||||||
execute!(stdout, EnableMouseCapture)?;
|
execute!(stdout, EnableMouseCapture)?;
|
||||||
|
|
||||||
let backend = CrosstermBackend::new(stdout);
|
|
||||||
let mut terminal = Terminal::new(backend)?;
|
|
||||||
|
|
||||||
use std::thread;
|
use std::thread;
|
||||||
|
|
||||||
// Same number of threads as there are CPU cores.
|
// Same number of threads as there are CPU cores.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue