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 64f5dbbd..a6d3b8fd 100644
--- a/doc/en/keys.txt
+++ b/doc/en/keys.txt
@@ -86,7 +86,7 @@ height of the conversation window - 1.
*Ctrl-f*:: Go one line down in the buffer.
-*Ctrl-u*:: Go half a screen up in the buffer.
+*Ctrl-s*:: Go half a screen up in the buffer.
*Ctrl-d*:: Go half a screen down in the buffer.
diff --git a/src/core.py b/src/core.py
index 0885a70f..dda9dcd4 100644
--- a/src/core.py
+++ b/src/core.py
@@ -159,7 +159,7 @@ class Core(object):
"^B": self.scroll_line_up,
"^F": self.scroll_line_down,
"^D": self.scroll_half_down,
- "^U": self.scroll_half_up,
+ "^S": self.scroll_half_up,
"KEY_F(5)": self.rotate_rooms_left,
"^P": self.rotate_rooms_left,
'kLFT3': self.rotate_rooms_left,