2020-06-24 21:03:38 +02:00
|
|
|
use crate::{keymap, Args};
|
|
|
|
use anyhow::Error;
|
2020-06-04 01:05:01 +02:00
|
|
|
use crossterm::{
|
|
|
|
cursor,
|
|
|
|
cursor::position,
|
2020-06-07 14:11:08 +02:00
|
|
|
event::{self, read, Event, EventStream, KeyCode, KeyEvent},
|
2020-06-16 22:46:27 +02:00
|
|
|
execute, queue,
|
2020-06-23 19:10:09 +02:00
|
|
|
style::{Color, Print, SetForegroundColor},
|
2020-06-04 01:05:01 +02:00
|
|
|
terminal::{self, disable_raw_mode, enable_raw_mode},
|
|
|
|
};
|
2020-06-07 14:11:08 +02:00
|
|
|
use futures::{future::FutureExt, select, StreamExt};
|
2020-09-07 04:28:52 +02:00
|
|
|
use helix_core::{state::coords_at_pos, state::Mode, State};
|
2020-06-07 14:11:08 +02:00
|
|
|
use std::io::{self, stdout, Write};
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::time::Duration;
|
2020-05-25 06:02:21 +02:00
|
|
|
|
2020-09-04 11:18:40 +02:00
|
|
|
static EX: smol::Executor = smol::Executor::new();
|
|
|
|
|
2020-06-05 12:21:27 +02:00
|
|
|
pub struct Editor {
|
2020-06-16 11:00:34 +02:00
|
|
|
state: Option<State>,
|
2020-06-23 19:10:09 +02:00
|
|
|
first_line: u16,
|
2020-06-19 02:14:29 +02:00
|
|
|
size: (u16, u16),
|
2020-06-05 12:21:27 +02:00
|
|
|
}
|
2020-05-25 06:02:21 +02:00
|
|
|
|
2020-06-04 01:05:01 +02:00
|
|
|
impl Editor {
|
2020-06-16 11:00:34 +02:00
|
|
|
pub fn new(mut args: Args) -> Result<Self, Error> {
|
2020-06-19 02:14:29 +02:00
|
|
|
let mut editor = Editor {
|
|
|
|
state: None,
|
2020-06-23 19:10:09 +02:00
|
|
|
first_line: 0,
|
2020-06-19 02:14:29 +02:00
|
|
|
size: terminal::size().unwrap(),
|
|
|
|
};
|
2020-06-16 11:00:34 +02:00
|
|
|
|
|
|
|
if let Some(file) = args.files.pop() {
|
|
|
|
editor.open(file)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(editor)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn open(&mut self, path: PathBuf) -> Result<(), Error> {
|
2020-09-07 04:28:52 +02:00
|
|
|
self.state = Some(State::load(path)?);
|
2020-06-16 11:00:34 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-06-19 02:14:29 +02:00
|
|
|
fn render(&mut self) {
|
2020-06-16 22:46:27 +02:00
|
|
|
match &self.state {
|
2020-09-05 15:01:05 +02:00
|
|
|
Some(state) => {
|
|
|
|
let lines = state
|
2020-09-07 04:28:52 +02:00
|
|
|
.doc
|
2020-09-05 15:01:05 +02:00
|
|
|
.lines_at(self.first_line as usize)
|
|
|
|
.take(self.size.1 as usize)
|
|
|
|
.map(|x| x.as_str().unwrap());
|
|
|
|
|
|
|
|
let mut stdout = stdout();
|
|
|
|
|
|
|
|
for (n, line) in lines.enumerate() {
|
|
|
|
execute!(
|
|
|
|
stdout,
|
|
|
|
SetForegroundColor(Color::DarkCyan),
|
|
|
|
cursor::MoveTo(0, n as u16),
|
|
|
|
Print((n + 1).to_string())
|
|
|
|
);
|
|
|
|
execute!(
|
|
|
|
stdout,
|
|
|
|
SetForegroundColor(Color::Reset),
|
|
|
|
cursor::MoveTo(2, n as u16),
|
|
|
|
Print(line)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mode = match state.mode {
|
|
|
|
Mode::Insert => "INS",
|
|
|
|
Mode::Normal => "NOR",
|
|
|
|
};
|
|
|
|
|
|
|
|
execute!(
|
|
|
|
stdout,
|
|
|
|
SetForegroundColor(Color::Reset),
|
|
|
|
cursor::MoveTo(0, self.size.1),
|
|
|
|
Print(mode)
|
|
|
|
);
|
|
|
|
|
|
|
|
// set cursor shape
|
|
|
|
match state.mode {
|
|
|
|
Mode::Insert => write!(stdout, "\x1B[6 q"),
|
|
|
|
Mode::Normal => write!(stdout, "\x1B[2 q"),
|
2020-06-23 19:10:09 +02:00
|
|
|
};
|
2020-09-05 15:01:05 +02:00
|
|
|
|
|
|
|
// render the cursor
|
2020-09-07 10:08:28 +02:00
|
|
|
let pos = state.selection.cursor();
|
2020-09-07 04:28:52 +02:00
|
|
|
let coords = coords_at_pos(&state.doc.slice(..), pos);
|
2020-09-05 15:01:05 +02:00
|
|
|
execute!(
|
|
|
|
stdout,
|
|
|
|
cursor::MoveTo((coords.1 + 2) as u16, coords.0 as u16)
|
|
|
|
);
|
2020-06-19 02:14:29 +02:00
|
|
|
}
|
2020-06-16 22:46:27 +02:00
|
|
|
None => (),
|
|
|
|
}
|
2020-06-16 11:00:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn print_events(&mut self) {
|
2020-06-07 14:11:08 +02:00
|
|
|
let mut reader = EventStream::new();
|
2020-06-16 11:00:34 +02:00
|
|
|
let keymap = keymap::default();
|
|
|
|
|
|
|
|
self.render();
|
|
|
|
|
2020-06-04 01:05:01 +02:00
|
|
|
loop {
|
|
|
|
// Handle key events
|
2020-06-07 14:11:08 +02:00
|
|
|
let mut event = reader.next().await;
|
|
|
|
match event {
|
2020-06-16 11:00:34 +02:00
|
|
|
// TODO: handle resize events
|
|
|
|
Some(Ok(Event::Key(KeyEvent {
|
|
|
|
code: KeyCode::Char('q'),
|
|
|
|
..
|
|
|
|
}))) => {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Some(Ok(Event::Key(event))) => {
|
2020-09-05 15:01:05 +02:00
|
|
|
if let Some(state) = &mut self.state {
|
|
|
|
match state.mode {
|
|
|
|
Mode::Insert => {
|
|
|
|
match event {
|
|
|
|
KeyEvent {
|
|
|
|
code: KeyCode::Esc, ..
|
|
|
|
} => helix_core::commands::normal_mode(state, 1),
|
|
|
|
KeyEvent {
|
|
|
|
code: KeyCode::Char(c),
|
|
|
|
..
|
2020-09-07 10:08:28 +02:00
|
|
|
} => helix_core::commands::insert_char(state, c),
|
2020-09-05 15:01:05 +02:00
|
|
|
_ => (), // skip
|
|
|
|
}
|
|
|
|
self.render();
|
|
|
|
}
|
|
|
|
Mode::Normal => {
|
|
|
|
// TODO: handle modes and sequences (`gg`)
|
|
|
|
if let Some(command) = keymap.get(&event) {
|
|
|
|
// TODO: handle count other than 1
|
|
|
|
command(state, 1);
|
|
|
|
|
|
|
|
self.render();
|
|
|
|
}
|
|
|
|
}
|
2020-06-07 14:11:08 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-04 01:05:01 +02:00
|
|
|
}
|
2020-06-16 11:00:34 +02:00
|
|
|
Some(Ok(_)) => {
|
|
|
|
// unhandled event
|
|
|
|
}
|
2020-06-07 14:11:08 +02:00
|
|
|
Some(Err(x)) => panic!(x),
|
|
|
|
None => break,
|
2020-06-04 01:05:01 +02:00
|
|
|
}
|
2020-05-25 06:02:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 11:18:40 +02:00
|
|
|
pub async fn run(&mut self) -> Result<(), Error> {
|
2020-06-04 01:05:01 +02:00
|
|
|
enable_raw_mode()?;
|
2020-05-25 06:02:21 +02:00
|
|
|
|
2020-06-04 01:05:01 +02:00
|
|
|
let mut stdout = stdout();
|
2020-06-05 12:21:27 +02:00
|
|
|
|
|
|
|
execute!(stdout, terminal::EnterAlternateScreen)?;
|
|
|
|
|
2020-09-04 11:18:40 +02:00
|
|
|
self.print_events().await;
|
2020-06-05 12:21:27 +02:00
|
|
|
|
2020-09-05 15:01:05 +02:00
|
|
|
// reset cursor shape
|
|
|
|
write!(stdout, "\x1B[2 q");
|
|
|
|
|
2020-06-07 14:11:08 +02:00
|
|
|
execute!(stdout, terminal::LeaveAlternateScreen)?;
|
|
|
|
|
2020-06-16 11:00:34 +02:00
|
|
|
disable_raw_mode()?;
|
|
|
|
|
|
|
|
Ok(())
|
2020-06-01 10:42:28 +02:00
|
|
|
}
|
2020-05-25 06:02:21 +02:00
|
|
|
}
|