diff options
author | mathieui <mathieui@mathieui.net> | 2012-05-29 12:35:03 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-05-29 12:35:03 +0200 |
commit | 262de9094a6f63774b5035ea23b14c19bcc2f808 (patch) | |
tree | e8d1a8d691bb08bc9be61c27ab4bb7e7d295594e | |
parent | cea0d284d956299a56b24ce0360a0f9c95c10ace (diff) | |
download | poezio-262de9094a6f63774b5035ea23b14c19bcc2f808.tar.gz poezio-262de9094a6f63774b5035ea23b14c19bcc2f808.tar.bz2 poezio-262de9094a6f63774b5035ea23b14c19bcc2f808.tar.xz poezio-262de9094a6f63774b5035ea23b14c19bcc2f808.zip |
Move ^D to ^X
-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 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, |