summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--functions.h1
-rw-r--r--keymap.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/functions.h b/functions.h
index 4087f9cc..7988d50f 100644
--- a/functions.h
+++ b/functions.h
@@ -161,7 +161,6 @@ struct binding_t OpPager[] = {
{ "flag-message", OP_FLAG_MESSAGE, "F" },
{ "group-reply", OP_GROUP_REPLY, "g" },
{ "display-toggle-weed", OP_DISPLAY_HEADERS, "h" },
- { "exit", OP_EXIT, "i" },
{ "next-undeleted", OP_MAIN_NEXT_UNDELETED, "j" },
{ "next-entry", OP_NEXT_ENTRY, "J" },
{ "previous-undeleted",OP_MAIN_PREV_UNDELETED, "k" },
diff --git a/keymap.c b/keymap.c
index 6e0cfa60..9f667474 100644
--- a/keymap.c
+++ b/keymap.c
@@ -589,7 +589,7 @@ void km_init (void)
km_bindkey ("<enter>", MENU_MAIN, OP_DISPLAY_MESSAGE);
km_bindkey ("x", MENU_PAGER, OP_EXIT);
- km_bindkey ("q", MENU_PAGER, OP_EXIT);
+ km_bindkey ("i", MENU_PAGER, OP_EXIT);
km_bindkey ("<backspace>", MENU_PAGER, OP_PREV_LINE);
km_bindkey ("<pagedown>", MENU_PAGER, OP_NEXT_PAGE);
km_bindkey ("<pageup>", MENU_PAGER, OP_PREV_PAGE);