helix-mods/helix-term/src/editor.rs

96 lines
2.4 KiB
Rust
Raw Normal View History

2020-06-04 01:05:01 +02:00
use std::io::{self, stdout, Write};
2020-06-05 12:21:27 +02:00
use std::path::PathBuf;
2020-06-04 01:05:01 +02:00
use crossterm::{
cursor,
cursor::position,
event::{self, read, Event, KeyCode, KeyEvent},
2020-06-05 12:21:27 +02:00
execute, queue, style,
2020-06-04 01:05:01 +02:00
terminal::{self, disable_raw_mode, enable_raw_mode},
Result,
};
2020-06-04 01:05:01 +02:00
const HELP: &str = r#"
- Use q to quit
- Move cursor with h, j, k, l
"#;
2020-06-05 12:21:27 +02:00
pub struct Editor {
file: PathBuf,
}
2020-06-04 01:05:01 +02:00
impl Editor {
pub fn read_char() -> Result<char> {
loop {
if let Ok(Event::Key(KeyEvent {
code: KeyCode::Char(c),
..
2020-06-04 01:05:01 +02:00
})) = event::read()
{
return Ok(c);
}
}
}
2020-06-05 12:21:27 +02:00
pub async fn print_events() -> Result<()> {
2020-06-04 01:05:01 +02:00
loop {
// Handle key events
match Editor::read_char()? {
'h' => execute!(io::stdout(), cursor::MoveLeft(1))?,
'j' => execute!(io::stdout(), cursor::MoveDown(1))?,
'k' => execute!(io::stdout(), cursor::MoveUp(1))?,
'l' => execute!(io::stdout(), cursor::MoveRight(1))?,
'q' => {
execute!(
io::stdout(),
style::ResetColor,
cursor::Show,
terminal::LeaveAlternateScreen
)?;
break;
}
_ => println!("use 'q' to quit."),
}
}
Ok(())
}
2020-06-04 01:05:01 +02:00
pub fn run() -> Result<()> {
enable_raw_mode()?;
2020-06-04 01:05:01 +02:00
let mut stdout = stdout();
2020-06-05 12:21:27 +02:00
execute!(stdout, terminal::EnterAlternateScreen)?;
use std::thread;
// Same number of threads as there are CPU cores.
let num_threads = num_cpus::get().max(1);
// A channel that sends the shutdown signal.
let (s, r) = piper::chan::<()>(0);
let mut threads = Vec::new();
// Create an executor thread pool.
for _ in 0..num_threads {
// Spawn an executor thread that waits for the shutdown signal.
let r = r.clone();
threads.push(thread::spawn(move || smol::run(r.recv())));
}
// No need to `run()`, now we can just block on the main future.
smol::block_on(Editor::print_events());
// Send a shutdown signal.
drop(s);
// Wait for threads to finish.
for t in threads {
t.join().unwrap();
}
2020-06-04 01:05:01 +02:00
disable_raw_mode()
2020-06-01 10:42:28 +02:00
}
}