From bde9c9987a5feec053370278a042b3e14c7323ae Mon Sep 17 00:00:00 2001 From: mars Date: Fri, 14 Apr 2023 22:19:05 -0400 Subject: [PATCH] Add d keybind --- src/keybinds.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/keybinds.rs b/src/keybinds.rs index f2337db..c9f993b 100644 --- a/src/keybinds.rs +++ b/src/keybinds.rs @@ -72,6 +72,7 @@ impl Default for Keybinds { (Char('O'), open_above), (Char('u'), undo), (Char('U'), redo), + (Char('d'), delete_char_forward), ] .iter() .chain(basic_nav);