summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/en/keys.txt2
-rw-r--r--src/core.py2
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,