From 0128d222b94adab6b258f417722f298013a33327 Mon Sep 17 00:00:00 2001 From: Hisham Date: Wed, 15 Jun 2016 12:45:23 -0300 Subject: Added Ctrl+A and Ctrl+E to go to beginning and end of line. (Also, '^' and '$') Closes #508. --- CategoriesPanel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CategoriesPanel.c') diff --git a/CategoriesPanel.c b/CategoriesPanel.c index d67be86a..afc32305 100644 --- a/CategoriesPanel.c +++ b/CategoriesPanel.c @@ -82,9 +82,9 @@ static HandlerResult CategoriesPanel_eventHandler(Panel* super, int ch) { result = HANDLED; break; case KEY_UP: - case KEY_CTRLP: + case KEY_CTRL('P'): case KEY_DOWN: - case KEY_CTRLN: + case KEY_CTRL('N'): case KEY_NPAGE: case KEY_PPAGE: case KEY_HOME: -- cgit v1.2.3