more work on vi stuff

This commit is contained in:
2025-05-23 02:14:56 -04:00
parent ac170d31c8
commit 9db6137934
5 changed files with 1176 additions and 427 deletions

View File

@@ -4,9 +4,10 @@ use linebuf::{strip_ansi_codes_and_escapes, LineBuf, TermCharBuf};
use mode::{CmdReplay, ViInsert, ViMode, ViNormal};
use term::Terminal;
use unicode_width::UnicodeWidthStr;
use vicmd::{Verb, ViCmd};
use vicmd::{MotionCmd, RegisterName, Verb, VerbCmd, ViCmd};
use crate::libsh::{error::ShResult, term::{Style, Styled}};
use crate::libsh::{error::{ShErr, ShErrKind, ShResult}, term::{Style, Styled}};
use crate::prelude::*;
pub mod keys;
pub mod term;
@@ -20,7 +21,8 @@ pub struct FernVi {
line: LineBuf,
prompt: String,
mode: Box<dyn ViMode>,
repeat_action: Option<CmdReplay>,
last_action: Option<CmdReplay>,
last_movement: Option<MotionCmd>,
}
impl FernVi {
@@ -33,19 +35,22 @@ impl FernVi {
line,
prompt,
mode: Box::new(ViInsert::new()),
repeat_action: None,
last_action: None,
last_movement: None,
}
}
pub fn clear_line(&self) {
let prompt_lines = self.prompt.lines().count();
let last_line_len = strip_ansi_codes_and_escapes(self.prompt.lines().last().unwrap_or_default()).width();
let buf_lines = if self.prompt.ends_with('\n') {
self.line.count_lines()
self.line.count_lines(last_line_len)
} else {
// The prompt does not end with a newline, so one of the buffer's lines overlaps with it
self.line.count_lines().saturating_sub(1)
self.line.count_lines(last_line_len).saturating_sub(1)
};
let total = prompt_lines + buf_lines;
self.term.write_bytes(b"\r\n");
self.term.write_bytes(format!("\r\x1b[{total}B").as_bytes());
for _ in 0..total {
self.term.write_bytes(b"\r\x1b[2K\x1b[1A");
}
@@ -57,7 +62,7 @@ impl FernVi {
}
let mut prompt_lines = self.prompt.lines().peekable();
let mut last_line_len = 0;
let lines = self.line.display_lines();
let lines = self.line.split_lines();
while let Some(line) = prompt_lines.next() {
if prompt_lines.peek().is_none() {
last_line_len = strip_ansi_codes_and_escapes(line).width();
@@ -66,9 +71,9 @@ impl FernVi {
self.term.writeln(line);
}
}
let num_lines = lines.len();
let mut lines_iter = lines.into_iter().peekable();
let pos = self.term.cursor_pos();
while let Some(line) = lines_iter.next() {
if lines_iter.peek().is_some() {
self.term.writeln(&line);
@@ -76,23 +81,30 @@ impl FernVi {
self.term.write(&line);
}
}
self.term.move_cursor_to(pos);
let (x, y) = self.line.cursor_display_coords();
let y = num_lines.saturating_sub(y + 1);
let (x, y) = self.line.cursor_display_coords(Some(last_line_len));
if y > 0 {
self.term.write(&format!("\r\x1b[{}A", y));
self.term.write(&format!("\r\x1b[{}B", y));
}
// Add prompt offset to X only if cursor is on the last line (y == 0)
let cursor_x = if y == 0 { x + last_line_len } else { x };
self.term.write(&format!("\r\x1b[{}C", cursor_x));
if cursor_x > 0 {
self.term.write(&format!("\r\x1b[{}C", cursor_x));
}
self.term.write(&self.mode.cursor_style());
}
pub fn readline(&mut self) -> ShResult<String> {
let dims = self.term.get_dimensions()?;
self.line.update_term_dims(dims.0, dims.1);
self.print_buf(false);
loop {
let dims = self.term.get_dimensions()?;
self.line.update_term_dims(dims.0, dims.1);
let key = self.term.read_key();
let Some(cmd) = self.mode.handle_key(key) else {
continue
@@ -109,9 +121,16 @@ impl FernVi {
pub fn exec_cmd(&mut self, cmd: ViCmd) -> ShResult<()> {
if cmd.is_mode_transition() {
let count = cmd.verb_count();
let mut mode: Box<dyn ViMode> = match cmd.verb().unwrap() {
Verb::InsertMode => Box::new(ViInsert::new().with_count(count)),
Verb::NormalMode => Box::new(ViNormal::new()),
let mut mode: Box<dyn ViMode> = match cmd.verb().unwrap().1 {
Verb::InsertModeLineBreak(_) |
Verb::InsertMode => {
self.line.set_cursor_clamp(false);
Box::new(ViInsert::new().with_count(count as u16))
}
Verb::NormalMode => {
self.line.set_cursor_clamp(true);
Box::new(ViNormal::new())
}
Verb::VisualMode => todo!(),
Verb::OverwriteMode => todo!(),
_ => unreachable!()
@@ -121,10 +140,60 @@ impl FernVi {
self.term.write(&mode.cursor_style());
if mode.is_repeatable() {
self.repeat_action = mode.as_replay();
self.last_action = mode.as_replay();
}
}
self.line.exec_cmd(cmd)?;
} else if cmd.is_cmd_repeat() {
let Some(replay) = self.last_action.clone() else {
return Ok(())
};
let ViCmd { register, verb, motion, raw_seq } = cmd;
let VerbCmd(count,_) = verb.unwrap();
match replay {
CmdReplay::ModeReplay { cmds, mut repeat } => {
if count > 1 {
repeat = count as u16;
}
for _ in 0..repeat {
let cmds = cmds.clone();
for cmd in cmds {
self.line.exec_cmd(cmd)?
}
}
}
CmdReplay::Single(mut cmd) => {
if count > 1 {
// Override the counts with the one passed to the '.' command
if cmd.verb.is_some() {
cmd.verb.as_mut().map(|v| v.0 = count);
cmd.motion.as_mut().map(|m| m.0 = 0);
} else {
return Ok(()) // it has to have a verb to be repeatable, something weird happened
}
}
self.line.exec_cmd(cmd)?;
}
_ => unreachable!("motions should be handled in the other branch")
}
return Ok(())
} else if cmd.is_motion_repeat() {
match cmd.verb.as_ref().unwrap().1 {
Verb::RepeatMotion => {
let Some(motion) = self.last_movement.clone() else {
return Ok(())
};
let repeat_cmd = ViCmd {
register: RegisterName::default(),
verb: None,
motion: Some(motion),
raw_seq: ";".into()
};
self.line.exec_cmd(repeat_cmd)?;
}
Verb::RepeatMotionRev => {}
_ => unreachable!()
}
}
self.line.exec_cmd(cmd.clone())?;
Ok(())
}
}