From 99142b0661ba8f54e1ff8dda035c67be54cac6a6 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Mon, 9 Jan 2017 14:16:28 +0100 Subject: Backspace/delete and end-of-line cursor fix --- config.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.cpp') diff --git a/config.cpp b/config.cpp index 0f57f3a..4fe5de9 100644 --- a/config.cpp +++ b/config.cpp @@ -9,6 +9,8 @@ using namespace std; Keybindings global_keybindings={ {KEY_CTRL+'Q',{"quit_app"}}, {'\n',{"insert_newline"}}, + {KEY_BACKSPACE,{"delete_backward"}}, + {KEY_DELETE,{"delete_forward"}}, }; class Init{public: Init(){ -- cgit v1.2.3-54-g00ecf