This commit is contained in:
2025-11-11 09:21:56 -07:00
parent cdb24f0f94
commit e00e28cea8

View File

@@ -110,6 +110,12 @@ impl Mode {
}
Mode::Chord(chord) => {
chord.add_char(key);
if chord.buf[0] == ':' {
app.mode = Mode::Command(Chord::new(':'));
return;
}
match chord.as_string()[0..chord.as_string().len() - 1].parse::<usize>() {
// For chords that can take a numeric input
Ok(num) => match key {