2021-03-08 10:21:06 -05:00
|
|
|
use crate::Document;
|
2021-03-08 10:43:40 -05:00
|
|
|
use crate::Row;
|
2021-03-05 16:36:39 -05:00
|
|
|
use crate::Terminal;
|
2021-03-08 13:34:25 -05:00
|
|
|
use std::env;
|
2021-03-08 14:55:14 -05:00
|
|
|
use std::time::Duration;
|
|
|
|
use std::time::Instant;
|
2021-03-08 14:41:40 -05:00
|
|
|
use termion::color;
|
2021-01-28 16:47:40 -05:00
|
|
|
use termion::event::Key;
|
2021-03-05 16:36:39 -05:00
|
|
|
|
2021-03-08 14:41:40 -05:00
|
|
|
const STATUS_FG_COLOR: color::Rgb = color::Rgb(63, 63, 63);
|
|
|
|
const STATUS_BG_COLOR: color::Rgb = color::Rgb(239, 239, 239);
|
2021-03-05 16:36:39 -05:00
|
|
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
2021-03-10 15:33:41 -05:00
|
|
|
const QUIT_TIMES: u8 = 3;
|
2021-01-28 16:47:40 -05:00
|
|
|
|
2021-03-12 16:29:19 -05:00
|
|
|
#[derive(PartialEq, Copy, Clone)]
|
|
|
|
pub enum SearchDirection {
|
|
|
|
Forward,
|
|
|
|
Backward,
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:17:32 -05:00
|
|
|
#[derive(Default, Clone)]
|
2021-03-08 09:50:15 -05:00
|
|
|
pub struct Position {
|
|
|
|
pub x: usize,
|
|
|
|
pub y: usize,
|
|
|
|
}
|
|
|
|
|
2021-03-08 14:55:14 -05:00
|
|
|
struct StatusMessage {
|
|
|
|
text: String,
|
|
|
|
time: Instant,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StatusMessage {
|
2021-03-10 15:10:45 -05:00
|
|
|
fn default() -> Self {
|
|
|
|
Self::from("")
|
|
|
|
}
|
|
|
|
|
2021-03-10 14:51:54 -05:00
|
|
|
fn from<S: Into<String>>(message: S) -> Self {
|
2021-03-08 14:55:14 -05:00
|
|
|
Self {
|
|
|
|
time: Instant::now(),
|
2021-03-10 14:51:54 -05:00
|
|
|
text: message.into(),
|
2021-03-08 14:55:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-28 16:47:40 -05:00
|
|
|
pub struct Editor {
|
|
|
|
should_quit: bool,
|
2021-03-05 16:36:39 -05:00
|
|
|
terminal: Terminal,
|
2021-03-08 09:50:15 -05:00
|
|
|
cursor_position: Position,
|
2021-03-08 14:21:24 -05:00
|
|
|
offset: Position,
|
2021-03-08 10:21:06 -05:00
|
|
|
document: Document,
|
2021-03-08 14:55:14 -05:00
|
|
|
status_message: StatusMessage,
|
2021-03-10 15:33:41 -05:00
|
|
|
quit_times: u8,
|
2021-01-28 16:47:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Editor {
|
|
|
|
pub fn run(&mut self) {
|
|
|
|
loop {
|
2021-03-05 16:36:39 -05:00
|
|
|
if let Err(error) = self.refresh_screen() {
|
2021-01-28 16:47:40 -05:00
|
|
|
die(error);
|
|
|
|
}
|
|
|
|
if self.should_quit {
|
|
|
|
break;
|
|
|
|
}
|
2021-03-05 16:36:39 -05:00
|
|
|
if let Err(error) = self.process_keypress() {
|
|
|
|
die(error);
|
|
|
|
}
|
2021-01-28 16:47:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn default() -> Self {
|
2021-03-08 13:34:25 -05:00
|
|
|
let args: Vec<String> = env::args().collect();
|
2021-03-12 16:29:19 -05:00
|
|
|
let mut initial_status =
|
|
|
|
String::from("HELP: Ctrl-F = find | Ctrl-S = save | Ctrl-Q = quit");
|
2021-03-10 16:09:46 -05:00
|
|
|
let document = if let Some(file_name) = args.get(1) {
|
2021-03-08 14:55:14 -05:00
|
|
|
let doc = Document::open(&file_name);
|
2021-03-10 16:09:46 -05:00
|
|
|
if let Ok(doc) = doc {
|
|
|
|
doc
|
2021-03-08 14:55:14 -05:00
|
|
|
} else {
|
|
|
|
initial_status = format!("ERR: Could not open file: {}", file_name);
|
|
|
|
Document::default()
|
|
|
|
}
|
2021-03-08 13:34:25 -05:00
|
|
|
} else {
|
|
|
|
Document::default()
|
|
|
|
};
|
|
|
|
|
2021-03-05 16:36:39 -05:00
|
|
|
Self {
|
|
|
|
should_quit: false,
|
|
|
|
terminal: Terminal::default().expect("Failed to initialize terminal"),
|
2021-03-08 13:34:25 -05:00
|
|
|
document,
|
2021-03-08 10:21:06 -05:00
|
|
|
cursor_position: Position::default(),
|
2021-03-08 14:21:24 -05:00
|
|
|
offset: Position::default(),
|
2021-03-08 14:55:14 -05:00
|
|
|
status_message: StatusMessage::from(initial_status),
|
2021-03-10 15:33:41 -05:00
|
|
|
quit_times: QUIT_TIMES,
|
2021-03-05 16:36:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn refresh_screen(&self) -> Result<(), std::io::Error> {
|
|
|
|
Terminal::cursor_hide();
|
2021-03-08 10:21:06 -05:00
|
|
|
Terminal::cursor_position(&Position::default());
|
2021-03-05 16:36:39 -05:00
|
|
|
if self.should_quit {
|
|
|
|
Terminal::clear_screen();
|
|
|
|
println!("Goodbye.\r");
|
|
|
|
} else {
|
|
|
|
self.draw_rows();
|
2021-03-08 14:41:40 -05:00
|
|
|
self.draw_status_bar();
|
|
|
|
self.draw_message_bar();
|
2021-03-08 14:21:24 -05:00
|
|
|
Terminal::cursor_position(&Position {
|
|
|
|
x: self.cursor_position.x.saturating_sub(self.offset.x),
|
|
|
|
y: self.cursor_position.y.saturating_sub(self.offset.y),
|
|
|
|
});
|
2021-03-05 16:36:39 -05:00
|
|
|
}
|
|
|
|
Terminal::cursor_show();
|
|
|
|
Terminal::flush()
|
2021-01-28 16:47:40 -05:00
|
|
|
}
|
|
|
|
|
2021-03-08 14:41:40 -05:00
|
|
|
fn draw_status_bar(&self) {
|
|
|
|
let mut status;
|
|
|
|
let width = self.terminal.size().width as usize;
|
2021-03-10 15:26:12 -05:00
|
|
|
let modified_indicator = if self.document.is_dirty() {
|
|
|
|
" (modified)"
|
|
|
|
} else {
|
|
|
|
""
|
|
|
|
};
|
2021-03-08 14:41:40 -05:00
|
|
|
let mut file_name = "[No Name]".to_string();
|
|
|
|
|
|
|
|
if let Some(name) = &self.document.file_name {
|
|
|
|
file_name = name.clone();
|
|
|
|
file_name.truncate(20);
|
|
|
|
}
|
|
|
|
|
2021-03-10 15:26:12 -05:00
|
|
|
status = format!(
|
|
|
|
"{} - {} lines{}",
|
|
|
|
file_name,
|
|
|
|
self.document.len(),
|
|
|
|
modified_indicator
|
|
|
|
);
|
2021-03-08 14:41:40 -05:00
|
|
|
|
|
|
|
let line_indicator = format!(
|
2021-03-16 10:28:41 -04:00
|
|
|
"{} | {}/{}",
|
|
|
|
self.document.file_type(),
|
2021-03-08 14:41:40 -05:00
|
|
|
self.cursor_position.y.saturating_add(1),
|
|
|
|
self.document.len()
|
|
|
|
);
|
2021-03-10 16:09:46 -05:00
|
|
|
|
|
|
|
#[allow(clippy::integer_arithmetic)]
|
2021-03-08 14:41:40 -05:00
|
|
|
let len = status.len() + line_indicator.len();
|
|
|
|
if width > len {
|
2021-03-10 16:09:46 -05:00
|
|
|
status.push_str(&" ".repeat(width.saturating_sub(len)));
|
2021-03-08 14:41:40 -05:00
|
|
|
}
|
|
|
|
status = format!("{}{}", status, line_indicator);
|
|
|
|
status.truncate(width);
|
|
|
|
|
|
|
|
Terminal::set_bg_color(STATUS_BG_COLOR);
|
|
|
|
Terminal::set_fg_color(STATUS_FG_COLOR);
|
|
|
|
println!("{}\r", status);
|
|
|
|
Terminal::reset_fg_color();
|
|
|
|
Terminal::reset_bg_color();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn draw_message_bar(&self) {
|
|
|
|
Terminal::clear_current_line();
|
2021-03-08 14:55:14 -05:00
|
|
|
let message = &self.status_message;
|
|
|
|
if Instant::now() - message.time < Duration::new(5, 0) {
|
|
|
|
let mut text = message.text.clone();
|
|
|
|
text.truncate(self.terminal.size().width as usize);
|
|
|
|
print!("{}", text);
|
|
|
|
}
|
2021-03-08 14:41:40 -05:00
|
|
|
}
|
|
|
|
|
2021-03-10 15:10:45 -05:00
|
|
|
fn save(&mut self) {
|
|
|
|
if self.document.file_name.is_none() {
|
2021-03-12 16:29:19 -05:00
|
|
|
let new_name = self.prompt("Save as: ", |_, _, _| {}).unwrap_or(None);
|
2021-03-10 15:10:45 -05:00
|
|
|
if new_name.is_none() {
|
|
|
|
self.status_message = StatusMessage::from("Save aborted.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self.document.file_name = new_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.document.save().is_ok() {
|
|
|
|
self.status_message = StatusMessage::from("File saved successfully.");
|
|
|
|
} else {
|
|
|
|
self.status_message = StatusMessage::from("Error writing file!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:17:32 -05:00
|
|
|
fn search(&mut self) {
|
|
|
|
let old_position = self.cursor_position.clone();
|
|
|
|
|
2021-03-12 16:29:19 -05:00
|
|
|
let mut direction = SearchDirection::Forward;
|
|
|
|
|
|
|
|
let query = self
|
2021-03-12 12:17:32 -05:00
|
|
|
.prompt(
|
|
|
|
"Search (ESC to cancel, arrows to navigate): ",
|
|
|
|
|editor, key, query| {
|
|
|
|
let mut moved = false;
|
|
|
|
|
|
|
|
match key {
|
|
|
|
Key::Right | Key::Down => {
|
2021-03-12 16:29:19 -05:00
|
|
|
direction = SearchDirection::Forward;
|
2021-03-12 12:17:32 -05:00
|
|
|
editor.move_cursor(Key::Right);
|
|
|
|
moved = true;
|
|
|
|
}
|
2021-03-12 16:29:19 -05:00
|
|
|
Key::Left | Key::Up => direction = SearchDirection::Backward,
|
|
|
|
_ => direction = SearchDirection::Forward,
|
2021-03-12 12:17:32 -05:00
|
|
|
}
|
|
|
|
|
2021-03-12 16:29:19 -05:00
|
|
|
if let Some(position) =
|
|
|
|
editor
|
|
|
|
.document
|
|
|
|
.find(&query, &editor.cursor_position, direction)
|
|
|
|
{
|
|
|
|
editor.cursor_position = position;
|
|
|
|
editor.scroll();
|
|
|
|
} else if moved {
|
|
|
|
editor.move_cursor(Key::Left);
|
|
|
|
}
|
2021-03-15 14:53:08 -04:00
|
|
|
|
|
|
|
editor.document.highlight(Some(query));
|
2021-03-12 16:29:19 -05:00
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap_or(None);
|
|
|
|
|
|
|
|
if query.is_none() {
|
2021-03-12 12:17:32 -05:00
|
|
|
self.cursor_position = old_position;
|
|
|
|
self.scroll();
|
|
|
|
}
|
2021-03-15 14:53:08 -04:00
|
|
|
|
|
|
|
self.document.highlight(None);
|
2021-03-12 12:17:32 -05:00
|
|
|
}
|
|
|
|
|
2021-01-28 16:47:40 -05:00
|
|
|
fn process_keypress(&mut self) -> Result<(), std::io::Error> {
|
2021-03-05 16:36:39 -05:00
|
|
|
let pressed_key = Terminal::read_key()?;
|
2021-01-28 16:47:40 -05:00
|
|
|
match pressed_key {
|
2021-03-10 15:33:41 -05:00
|
|
|
Key::Ctrl('q') => {
|
|
|
|
if self.quit_times > 0 && self.document.is_dirty() {
|
|
|
|
self.status_message = StatusMessage::from(format!(
|
|
|
|
"WARNING! File has unsaved changes. Press Ctrl-Q {} more times to quit.",
|
|
|
|
self.quit_times
|
|
|
|
));
|
|
|
|
|
|
|
|
self.quit_times -= 1;
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
|
|
|
self.should_quit = true
|
2021-03-12 16:29:19 -05:00
|
|
|
}
|
2021-03-10 15:10:45 -05:00
|
|
|
Key::Ctrl('s') => self.save(),
|
2021-03-12 12:17:32 -05:00
|
|
|
Key::Ctrl('f') => self.search(),
|
2021-03-10 13:48:21 -05:00
|
|
|
Key::Char(c) => {
|
|
|
|
self.document.insert(&self.cursor_position, c);
|
|
|
|
self.move_cursor(Key::Right);
|
2021-03-12 16:29:19 -05:00
|
|
|
}
|
2021-03-10 13:48:21 -05:00
|
|
|
Key::Delete => self.document.delete(&self.cursor_position),
|
|
|
|
Key::Backspace => {
|
|
|
|
if self.cursor_position.x > 0 || self.cursor_position.y > 0 {
|
|
|
|
self.move_cursor(Key::Left);
|
|
|
|
self.document.delete(&self.cursor_position);
|
|
|
|
}
|
|
|
|
}
|
2021-03-08 09:51:20 -05:00
|
|
|
Key::Up
|
|
|
|
| Key::Down
|
|
|
|
| Key::Left
|
|
|
|
| Key::Right
|
|
|
|
| Key::PageUp
|
|
|
|
| Key::PageDown
|
|
|
|
| Key::End
|
|
|
|
| Key::Home => self.move_cursor(pressed_key),
|
2021-01-28 16:47:40 -05:00
|
|
|
_ => (),
|
|
|
|
}
|
2021-03-08 14:21:24 -05:00
|
|
|
|
|
|
|
self.scroll();
|
|
|
|
|
2021-03-10 15:33:41 -05:00
|
|
|
// Reset quit confirmation count if not Ctrl-Q input
|
|
|
|
if self.quit_times < QUIT_TIMES {
|
|
|
|
self.quit_times = QUIT_TIMES;
|
|
|
|
self.status_message = StatusMessage::default();
|
|
|
|
}
|
|
|
|
|
2021-01-28 16:47:40 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-03-12 16:29:19 -05:00
|
|
|
fn prompt<C>(&mut self, prompt: &str, mut callback: C) -> Result<Option<String>, std::io::Error>
|
2021-03-12 12:00:39 -05:00
|
|
|
where
|
2021-03-12 16:29:19 -05:00
|
|
|
C: FnMut(&mut Self, Key, &String),
|
2021-03-12 12:00:39 -05:00
|
|
|
{
|
2021-03-10 15:10:45 -05:00
|
|
|
let mut result = String::new();
|
|
|
|
|
|
|
|
loop {
|
|
|
|
self.status_message = StatusMessage::from(format!("{}{}", prompt, result));
|
|
|
|
self.refresh_screen()?;
|
|
|
|
|
2021-03-12 12:00:39 -05:00
|
|
|
let key = Terminal::read_key()?;
|
|
|
|
match key {
|
2021-03-10 16:09:46 -05:00
|
|
|
Key::Backspace => result.truncate(result.len().saturating_sub(1)),
|
2021-03-10 15:10:45 -05:00
|
|
|
Key::Char('\n') => break,
|
|
|
|
Key::Char(c) => {
|
|
|
|
if !c.is_control() {
|
|
|
|
result.push(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Key::Esc => {
|
|
|
|
result.truncate(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
2021-03-12 12:00:39 -05:00
|
|
|
|
|
|
|
callback(self, key, &result);
|
2021-03-10 15:10:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
self.status_message = StatusMessage::default();
|
|
|
|
|
|
|
|
if result.is_empty() {
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(Some(result))
|
|
|
|
}
|
|
|
|
|
2021-03-08 14:21:24 -05:00
|
|
|
fn scroll(&mut self) {
|
|
|
|
let Position { x, y } = self.cursor_position;
|
|
|
|
let width = self.terminal.size().width as usize;
|
|
|
|
let height = self.terminal.size().height as usize;
|
|
|
|
|
|
|
|
let mut offset = &mut self.offset;
|
|
|
|
|
|
|
|
if y < offset.y {
|
|
|
|
offset.y = y;
|
|
|
|
} else if y >= offset.y.saturating_add(height) {
|
|
|
|
offset.y = y.saturating_sub(height).saturating_add(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if x < offset.x {
|
|
|
|
offset.x = x;
|
|
|
|
} else if x >= offset.x.saturating_add(width) {
|
|
|
|
offset.x = x.saturating_sub(width).saturating_add(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-08 09:50:15 -05:00
|
|
|
fn move_cursor(&mut self, key: Key) {
|
2021-03-08 14:21:24 -05:00
|
|
|
let terminal_height = self.terminal.size().height as usize;
|
2021-03-08 09:50:15 -05:00
|
|
|
let Position { mut y, mut x } = self.cursor_position;
|
2021-03-08 14:21:24 -05:00
|
|
|
let height = self.document.len();
|
2021-03-11 15:52:30 -05:00
|
|
|
|
|
|
|
let mut width = self.document.row(y).map_or(0, Row::len);
|
2021-03-08 09:50:15 -05:00
|
|
|
|
|
|
|
match key {
|
|
|
|
Key::Up => y = y.saturating_sub(1),
|
|
|
|
Key::Down => {
|
|
|
|
if y < height {
|
|
|
|
y = y.saturating_add(1);
|
|
|
|
}
|
2021-03-12 16:29:19 -05:00
|
|
|
}
|
2021-03-08 14:21:24 -05:00
|
|
|
Key::Left => {
|
|
|
|
if x > 0 {
|
|
|
|
x -= 1;
|
|
|
|
} else if y > 0 {
|
|
|
|
y -= 1;
|
2021-03-11 15:52:30 -05:00
|
|
|
x = self.document.row(y).map_or(0, Row::len);
|
2021-03-08 14:21:24 -05:00
|
|
|
}
|
2021-03-12 16:29:19 -05:00
|
|
|
}
|
2021-03-08 09:50:15 -05:00
|
|
|
Key::Right => {
|
|
|
|
if x < width {
|
2021-03-08 14:21:24 -05:00
|
|
|
x += 1;
|
|
|
|
} else if y < height {
|
|
|
|
y += 1;
|
|
|
|
x = 0;
|
|
|
|
}
|
2021-03-12 16:29:19 -05:00
|
|
|
}
|
2021-03-08 14:21:24 -05:00
|
|
|
Key::PageUp => {
|
2021-03-12 16:29:19 -05:00
|
|
|
y = if y > terminal_height {
|
2021-03-10 16:09:46 -05:00
|
|
|
y.saturating_sub(terminal_height)
|
2021-03-08 14:21:24 -05:00
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
2021-03-12 16:29:19 -05:00
|
|
|
}
|
2021-03-08 14:21:24 -05:00
|
|
|
Key::PageDown => {
|
|
|
|
y = if y.saturating_add(terminal_height) < height {
|
2021-03-10 16:09:46 -05:00
|
|
|
y.saturating_add(terminal_height)
|
2021-03-08 14:21:24 -05:00
|
|
|
} else {
|
|
|
|
height
|
2021-03-08 09:50:15 -05:00
|
|
|
}
|
2021-03-12 16:29:19 -05:00
|
|
|
}
|
2021-03-08 09:50:15 -05:00
|
|
|
Key::Home => x = 0,
|
|
|
|
Key::End => x = width,
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
|
2021-03-11 15:52:30 -05:00
|
|
|
width = self.document.row(y).map_or(0, Row::len);
|
2021-03-08 14:21:24 -05:00
|
|
|
|
|
|
|
if x > width {
|
|
|
|
x = width;
|
|
|
|
}
|
|
|
|
|
2021-03-08 09:50:15 -05:00
|
|
|
self.cursor_position = Position { x, y }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn draw_welcome_message(&self) {
|
|
|
|
let mut welcome_message = format!("Hecto editor -- version {}", VERSION);
|
|
|
|
let width = self.terminal.size().width as usize;
|
|
|
|
let len = welcome_message.len();
|
2021-03-10 16:09:46 -05:00
|
|
|
|
|
|
|
#[allow(clippy::integer_arithmetic, clippy::integer_division)]
|
2021-03-08 09:50:15 -05:00
|
|
|
let padding = width.saturating_sub(len) / 2;
|
|
|
|
let spaces = " ".repeat(padding.saturating_sub(1));
|
2021-03-10 16:09:46 -05:00
|
|
|
|
2021-03-08 09:50:15 -05:00
|
|
|
welcome_message = format!("~{}{}", spaces, welcome_message);
|
|
|
|
welcome_message.truncate(width);
|
2021-03-10 16:09:46 -05:00
|
|
|
|
2021-03-08 09:50:15 -05:00
|
|
|
println!("{}\r", welcome_message);
|
|
|
|
}
|
|
|
|
|
2021-03-08 10:43:40 -05:00
|
|
|
pub fn draw_row(&self, row: &Row) {
|
2021-03-08 14:21:24 -05:00
|
|
|
let width = self.terminal.size().width as usize;
|
|
|
|
let start = self.offset.x;
|
2021-03-10 16:09:46 -05:00
|
|
|
let end = self.offset.x.saturating_add(width);
|
2021-03-08 10:43:40 -05:00
|
|
|
let row = row.render(start, end);
|
|
|
|
println!("{}\r", row);
|
|
|
|
}
|
|
|
|
|
2021-03-10 16:09:46 -05:00
|
|
|
#[allow(clippy::integer_arithmetic, clippy::integer_division)]
|
2021-03-05 16:36:39 -05:00
|
|
|
fn draw_rows(&self) {
|
|
|
|
let height = self.terminal.size().height;
|
|
|
|
|
2021-03-08 14:21:24 -05:00
|
|
|
for terminal_row in 0..height {
|
2021-03-05 16:36:39 -05:00
|
|
|
Terminal::clear_current_line();
|
|
|
|
|
2021-03-10 16:09:46 -05:00
|
|
|
if let Some(row) = self
|
|
|
|
.document
|
|
|
|
.row(self.offset.y.saturating_add(terminal_row as usize))
|
|
|
|
{
|
2021-03-08 10:43:40 -05:00
|
|
|
self.draw_row(row);
|
|
|
|
} else if self.document.is_empty() && terminal_row == height / 3 {
|
2021-03-08 09:50:15 -05:00
|
|
|
self.draw_welcome_message();
|
2021-03-05 16:36:39 -05:00
|
|
|
} else {
|
|
|
|
println!("~\r");
|
|
|
|
}
|
2021-01-28 16:47:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn die(e: std::io::Error) {
|
2021-03-05 16:36:39 -05:00
|
|
|
Terminal::clear_screen();
|
2021-01-28 16:47:40 -05:00
|
|
|
panic!(e);
|
|
|
|
}
|