implemented history for the line editor

This commit is contained in:
2025-05-28 20:24:09 -04:00
parent 038d9ff144
commit 53799f42b3
8 changed files with 731 additions and 147 deletions

View File

@@ -223,6 +223,7 @@ impl Verb {
}
pub fn is_char_insert(&self) -> bool {
matches!(self,
Self::Change |
Self::InsertChar(_) |
Self::ReplaceChar(_)
)