diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -187,7 +187,9 @@ class Gui(object): 'quit': (self.command_quit, _('Usage: /quit\nQuit: Just disconnect from the server and exit poezio.')), 'exit': (self.command_quit, _('Usage: /exit\nExit: Just disconnect from the server and exit poezio.')), 'next': (self.rotate_rooms_right, _('Usage: /next\nNext: Go to the next room.')), + 'n': (self.rotate_rooms_right, _('Usage: /n\nN: Go to the next room.')), 'prev': (self.rotate_rooms_left, _('Usage: /prev\nPrev: Go to the previous room.')), + 'p': (self.rotate_rooms_left, _('Usage: /p\nP: Go to the previous room.')), 'win': (self.command_win, _('Usage: /win <number>\nWin: Go to the specified room.')), 'w': (self.command_win, _('Usage: /w <number>\nW: Go to the specified room.')), 'part': (self.command_part, _('Usage: /part [message]\nPart: disconnect from a room. You can specify an optional message.')), |