Move ^D to ^X
This commit is contained in:
parent
cea0d284d9
commit
262de9094a
2 changed files with 2 additions and 2 deletions
|
@ -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 you’re typing using the "recent" words from the
|
*Alt-/*:: Complete what you’re typing using the "recent" words from the
|
||||||
current conversation, if any.
|
current conversation, if any.
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue