Early implementation of Verbatim mode

This commit is contained in:
2026-03-04 15:26:54 -05:00
parent 12267716be
commit 553330a858
10 changed files with 130 additions and 16 deletions

View File

@@ -64,6 +64,10 @@ impl ViMode for ViInsert {
));
self.register_and_return()
}
E(K::Char('V'), M::CTRL) => {
self.pending_cmd.set_verb(VerbCmd(1, Verb::VerbatimMode));
self.register_and_return()
}
E(K::Char('H'), M::CTRL) | E(K::Backspace, M::NONE) => {
self.pending_cmd.set_verb(VerbCmd(1, Verb::Delete));
self