mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-23 01:46:18 +04:00
Refactor editor module to use state + keymap.
This commit is contained in:
parent
065cbcee9e
commit
8119f1ec3d
@ -4,60 +4,81 @@
|
|||||||
event::{self, read, Event, EventStream, KeyCode, KeyEvent},
|
event::{self, read, Event, EventStream, KeyCode, KeyEvent},
|
||||||
execute, queue, style,
|
execute, queue, style,
|
||||||
terminal::{self, disable_raw_mode, enable_raw_mode},
|
terminal::{self, disable_raw_mode, enable_raw_mode},
|
||||||
Result,
|
|
||||||
};
|
};
|
||||||
use futures::{future::FutureExt, select, StreamExt};
|
use futures::{future::FutureExt, select, StreamExt};
|
||||||
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;
|
||||||
|
|
||||||
const HELP: &str = r#"
|
use anyhow::Error;
|
||||||
- Use q to quit
|
|
||||||
- Move cursor with h, j, k, l
|
use crate::{keymap, Args};
|
||||||
"#;
|
use helix_core::{Buffer, State};
|
||||||
|
|
||||||
pub struct Editor {
|
pub struct Editor {
|
||||||
file: PathBuf,
|
state: Option<State>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Editor {
|
impl Editor {
|
||||||
pub async fn print_events() {
|
pub fn new(mut args: Args) -> Result<Self, Error> {
|
||||||
|
let mut editor = Editor { state: None };
|
||||||
|
|
||||||
|
if let Some(file) = args.files.pop() {
|
||||||
|
editor.open(file)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(editor)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn open(&mut self, path: PathBuf) -> Result<(), Error> {
|
||||||
|
let buffer = Buffer::load(path)?;
|
||||||
|
let state = State::new(buffer);
|
||||||
|
self.state = Some(state);
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn render(&self) {
|
||||||
|
// TODO:
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn print_events(&mut self) {
|
||||||
let mut reader = EventStream::new();
|
let mut reader = EventStream::new();
|
||||||
|
let keymap = keymap::default();
|
||||||
|
|
||||||
|
self.render();
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
// Handle key events
|
// Handle key events
|
||||||
let mut event = reader.next().await;
|
let mut event = reader.next().await;
|
||||||
match event {
|
match event {
|
||||||
Some(Ok(x)) => {
|
// TODO: handle resize events
|
||||||
if let Event::Key(KeyEvent {
|
Some(Ok(Event::Key(KeyEvent {
|
||||||
code: KeyCode::Char(c),
|
code: KeyCode::Char('q'),
|
||||||
..
|
..
|
||||||
}) = x
|
}))) => {
|
||||||
{
|
break;
|
||||||
match c {
|
}
|
||||||
'h' => execute!(io::stdout(), cursor::MoveLeft(1)).unwrap(),
|
Some(Ok(Event::Key(event))) => {
|
||||||
'j' => execute!(io::stdout(), cursor::MoveDown(1)).unwrap(),
|
// TODO: handle modes and sequences (`gg`)
|
||||||
'k' => execute!(io::stdout(), cursor::MoveUp(1)).unwrap(),
|
if let Some(command) = keymap.get(&event) {
|
||||||
'l' => execute!(io::stdout(), cursor::MoveRight(1)).unwrap(),
|
if let Some(state) = &mut self.state {
|
||||||
'q' => {
|
// TODO: handle count other than 1
|
||||||
execute!(
|
command(state, 1);
|
||||||
io::stdout(),
|
self.render();
|
||||||
style::ResetColor,
|
|
||||||
cursor::Show,
|
|
||||||
terminal::LeaveAlternateScreen
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
_ => println!("{:?}", x),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Some(Ok(_)) => {
|
||||||
|
// unhandled event
|
||||||
|
()
|
||||||
|
}
|
||||||
Some(Err(x)) => panic!(x),
|
Some(Err(x)) => panic!(x),
|
||||||
None => break,
|
None => break,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run() -> Result<()> {
|
pub fn run(&mut self) -> Result<(), Error> {
|
||||||
enable_raw_mode()?;
|
enable_raw_mode()?;
|
||||||
|
|
||||||
let mut stdout = stdout();
|
let mut stdout = stdout();
|
||||||
@ -81,7 +102,7 @@ pub fn run() -> Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// No need to `run()`, now we can just block on the main future.
|
// No need to `run()`, now we can just block on the main future.
|
||||||
smol::block_on(Editor::print_events());
|
smol::block_on(self.print_events());
|
||||||
|
|
||||||
// Send a shutdown signal.
|
// Send a shutdown signal.
|
||||||
drop(s);
|
drop(s);
|
||||||
@ -93,6 +114,8 @@ pub fn run() -> Result<()> {
|
|||||||
t.join().unwrap();
|
t.join().unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
disable_raw_mode()
|
disable_raw_mode()?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -94,7 +94,7 @@ macro_rules! hashmap {
|
|||||||
|
|
||||||
type Keymap = HashMap<Key, Command>;
|
type Keymap = HashMap<Key, Command>;
|
||||||
|
|
||||||
fn default() -> Keymap {
|
pub fn default() -> Keymap {
|
||||||
hashmap!(
|
hashmap!(
|
||||||
Key {
|
Key {
|
||||||
code: KeyCode::Char('h'),
|
code: KeyCode::Char('h'),
|
||||||
|
@ -22,7 +22,8 @@ fn main() -> Result<(), Error> {
|
|||||||
let args: Args = argh::from_env();
|
let args: Args = argh::from_env();
|
||||||
println!("{:?}", args.files);
|
println!("{:?}", args.files);
|
||||||
|
|
||||||
editor::Editor::run()?;
|
let mut editor = editor::Editor::new(args)?;
|
||||||
|
editor.run();
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user