summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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.')),