diff options
author | mathieui <mathieui@mathieui.net> | 2012-02-19 22:29:40 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-02-19 22:29:40 +0100 |
commit | fb9767a80316840f7c5817d1f6432c0d52116525 (patch) | |
tree | 12251c58de1f6f6570e014279576a377e6108293 | |
parent | 687b9106e78b970cd8e382207856980048b0ef94 (diff) | |
download | poezio-fb9767a80316840f7c5817d1f6432c0d52116525.tar.gz poezio-fb9767a80316840f7c5817d1f6432c0d52116525.tar.bz2 poezio-fb9767a80316840f7c5817d1f6432c0d52116525.tar.xz poezio-fb9767a80316840f7c5817d1f6432c0d52116525.zip |
^S → half-screen up
-rw-r--r-- | doc/en/keys.txt | 2 | ||||
-rw-r--r-- | src/core.py | 2 |
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, |