From 262de9094a6f63774b5035ea23b14c19bcc2f808 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 29 May 2012 12:35:03 +0200 Subject: Move ^D to ^X --- doc/en/keys.txt | 2 +- src/core.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/en/keys.txt b/doc/en/keys.txt index 874614df..e7e6231b 100644 --- a/doc/en/keys.txt +++ b/doc/en/keys.txt @@ -88,7 +88,7 @@ height of the conversation window - 1. *Ctrl-s*:: Go half a screen up in the buffer. -*Ctrl-d*:: Go half a screen down in the buffer. +*Ctrl-x*:: Go half a screen down in the buffer. *Alt-/*:: Complete what you’re typing using the "recent" words from the current conversation, if any. diff --git a/src/core.py b/src/core.py index 1e7f8a93..0147cbdf 100644 --- a/src/core.py +++ b/src/core.py @@ -190,7 +190,7 @@ class Core(object): "KEY_NPAGE": self.scroll_page_down, "^B": self.scroll_line_up, "^F": self.scroll_line_down, - "^D": self.scroll_half_down, + "^X": self.scroll_half_down, "^S": self.scroll_half_up, "KEY_F(5)": self.rotate_rooms_left, "^P": self.rotate_rooms_left, -- cgit v1.2.3