This commit is contained in:
alice pellerin
2026-03-21 22:32:19 -05:00
parent 9ac66fc074
commit 1a6e7882ed
4 changed files with 130 additions and 6 deletions
+2 -1
View File
@@ -40,7 +40,7 @@ pub enum Mode {
#[derive(Clone, Copy, Hash, PartialEq, Eq)]
pub enum PartialAction {
Goto, View, Replace, Space, Repeat
Goto, View, Replace, Space, Repeat, To
}
impl Mode {
@@ -69,6 +69,7 @@ impl PartialAction {
Self::Replace => "r",
Self::Space => "",
Self::Repeat => "×",
Self::To => "t",
}
}
}