From 883e063f8bf6ea8a858193c69a1690c3e9e3d185 Mon Sep 17 00:00:00 2001 From: cancel Date: Tue, 11 Dec 2018 21:58:35 +0900 Subject: [PATCH] Add delete to replace with '.' --- tui_main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tui_main.c b/tui_main.c index c8f7c9f..cf46f97 100644 --- a/tui_main.c +++ b/tui_main.c @@ -1777,6 +1777,10 @@ int main(int argc, char** argv) { app_modify_selection_size(&app_state, 0, 1); break; + case 330: // delete? + app_input_character(&app_state, '.'); + break; + case KEY_F(1): app_state.grid_scroll_x -= 1; app_state.is_draw_dirty = true;