diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-02-13 00:12:11 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-02-13 00:12:11 +0000 |
commit | e13db0a9bc5ea2c2f52f029643a98e993258c998 (patch) | |
tree | d4c5e46a9b8d6886cb1974747bca3d0305d68ecb | |
parent | fff3d805a105722b85281654a2dfdf902c9c5cac (diff) | |
download | poezio-e13db0a9bc5ea2c2f52f029643a98e993258c998.tar.gz poezio-e13db0a9bc5ea2c2f52f029643a98e993258c998.tar.bz2 poezio-e13db0a9bc5ea2c2f52f029643a98e993258c998.tar.xz poezio-e13db0a9bc5ea2c2f52f029643a98e993258c998.zip |
ALLO /p et /n
-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.')), |