diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-26 14:27:02 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-26 14:27:02 +0200 |
commit | 4172a79117606ffaf23feba6dc38ced3fa759ea5 (patch) | |
tree | 7f417c57a53eb9b366d903175e5122ac742492a8 /src/core/commands.py | |
parent | 1f0ff4f0c30f5326e1b36ff03ebf83ac85239e89 (diff) | |
download | poezio-4172a79117606ffaf23feba6dc38ced3fa759ea5.tar.gz poezio-4172a79117606ffaf23feba6dc38ced3fa759ea5.tar.bz2 poezio-4172a79117606ffaf23feba6dc38ced3fa759ea5.tar.xz poezio-4172a79117606ffaf23feba6dc38ced3fa759ea5.zip |
Fix #2514 (add a /toggle command)
Diffstat (limited to 'src/core/commands.py')
-rw-r--r-- | src/core/commands.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/commands.py b/src/core/commands.py index 0815a80e..1c728283 100644 --- a/src/core/commands.py +++ b/src/core/commands.py @@ -620,6 +620,15 @@ def command_set(self, arg): self.call_for_resize() self.information(*info) +def command_toggle(self, arg): + """ + /toggle <option> + shortcut for /set <option> toggle + """ + arg = arg.split() + if arg and arg[0]: + self.command_set('%s toggle' % arg[0]) + def command_server_cycle(self, arg=''): """ Do a /cycle on each room of the given server. |