Move ^D to ^X

This commit is contained in:
mathieui 2012-05-29 12:35:03 +02:00
parent cea0d284d9
commit 262de9094a
2 changed files with 2 additions and 2 deletions

View file

@ -88,7 +88,7 @@ height of the conversation window - 1.
*Ctrl-s*:: 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. *Ctrl-x*:: Go half a screen down in the buffer.
*Alt-/*:: Complete what youre typing using the "recent" words from the *Alt-/*:: Complete what youre typing using the "recent" words from the
current conversation, if any. current conversation, if any.

View file

@ -190,7 +190,7 @@ class Core(object):
"KEY_NPAGE": self.scroll_page_down, "KEY_NPAGE": self.scroll_page_down,
"^B": self.scroll_line_up, "^B": self.scroll_line_up,
"^F": self.scroll_line_down, "^F": self.scroll_line_down,
"^D": self.scroll_half_down, "^X": self.scroll_half_down,
"^S": self.scroll_half_up, "^S": self.scroll_half_up,
"KEY_F(5)": self.rotate_rooms_left, "KEY_F(5)": self.rotate_rooms_left,
"^P": self.rotate_rooms_left, "^P": self.rotate_rooms_left,