summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-02-13 00:12:11 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-02-13 00:12:11 +0000
commite13db0a9bc5ea2c2f52f029643a98e993258c998 (patch)
treed4c5e46a9b8d6886cb1974747bca3d0305d68ecb /src
parentfff3d805a105722b85281654a2dfdf902c9c5cac (diff)
downloadpoezio-e13db0a9bc5ea2c2f52f029643a98e993258c998.tar.gz
poezio-e13db0a9bc5ea2c2f52f029643a98e993258c998.tar.bz2
poezio-e13db0a9bc5ea2c2f52f029643a98e993258c998.tar.xz
poezio-e13db0a9bc5ea2c2f52f029643a98e993258c998.zip
ALLO /p et /n
Diffstat (limited to 'src')
-rw-r--r--src/gui.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui.py b/src/gui.py
index fd3f7fe8..eb5985c3 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -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.')),