diff options
-rw-r--r-- | poezio/tabs/basetabs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/poezio/tabs/basetabs.py b/poezio/tabs/basetabs.py index 50fd1b82..feabbb1c 100644 --- a/poezio/tabs/basetabs.py +++ b/poezio/tabs/basetabs.py @@ -494,10 +494,11 @@ class ChatTab(Tab): usage='<message>', shortdesc='Send the message.') self.register_command( - 'sb', + 'scrollback', self.command_scrollback, usage="end home clear status goto <+|-linecount>|<linenum>|<timestamp>", shortdesc='Scrollback to the given line number, message, or clear the buffer.') + self.commands['sb'] = self.commands['scrollback'] self.register_command( 'xhtml', self.command_xhtml, |