feat: use i to enter edit mode

This commit is contained in:
Jeremy Wall 2024-11-20 21:30:09 -05:00
parent f8dbec18e4
commit d7301246d8
2 changed files with 1 additions and 1 deletions

BIN
examples/test.icalc Normal file

Binary file not shown.

View File

@ -203,7 +203,7 @@ impl<'ws> Workspace<'ws> {
fn handle_navigation_input(&mut self, key: event::KeyEvent) -> Result<Option<ExitCode>> {
if key.kind == KeyEventKind::Press {
match key.code {
KeyCode::Char('e') => {
KeyCode::Char('e') | KeyCode::Char('i') => {
self.enter_edit_mode();
}
KeyCode::Char(':') => {