From c772fd46fb1902807b5908245c80492078706477 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Mon, 9 Jan 2017 14:26:55 +0100 Subject: Fix tab display and entry --- config.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'config.cpp') diff --git a/config.cpp b/config.cpp index 4fe5de9..4d59f55 100644 --- a/config.cpp +++ b/config.cpp @@ -8,9 +8,10 @@ using namespace std; Keybindings global_keybindings={ {KEY_CTRL+'Q',{"quit_app"}}, - {'\n',{"insert_newline"}}, {KEY_BACKSPACE,{"delete_backward"}}, {KEY_DELETE,{"delete_forward"}}, + {'\n',{"insert_newline"}}, + {'\t',{"insert_char","\t"}}, }; class Init{public: Init(){ -- cgit v1.2.3-54-g00ecf