diff options
author | mathieui <mathieui@mathieui.net> | 2014-12-07 20:50:24 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-12-07 20:50:24 +0100 |
commit | 1cd0b4d6ea1f231c7786a01ebf3852419a4b762a (patch) | |
tree | 3e434882fcfdd1e96c6b418f0dd3765e49c33a8b /src/core/commands.py | |
parent | 93f05f04d708a580c3ecf49aa430e2830c319268 (diff) | |
download | poezio-1cd0b4d6ea1f231c7786a01ebf3852419a4b762a.tar.gz poezio-1cd0b4d6ea1f231c7786a01ebf3852419a4b762a.tar.bz2 poezio-1cd0b4d6ea1f231c7786a01ebf3852419a4b762a.tar.xz poezio-1cd0b4d6ea1f231c7786a01ebf3852419a4b762a.zip |
Fix #2570 (add /filter_jid to XMLTab, and syntax highlighting)
Also add /filter_from and /filter_to, and allow chaining filters.
Diffstat (limited to 'src/core/commands.py')
-rw-r--r-- | src/core/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/commands.py b/src/core/commands.py index 715e213e..2777833b 100644 --- a/src/core/commands.py +++ b/src/core/commands.py @@ -994,11 +994,11 @@ def command_message(self, args): @command_args_parser.ignored def command_xml_tab(self): """/xml_tab""" - self.xml_tab = True xml_tab = self.focus_tab_named('XMLTab', tabs.XMLTab) if not xml_tab: tab = tabs.XMLTab() self.add_tab(tab, True) + self.xml_tab = tab @command_args_parser.quoted(1) def command_adhoc(self, args): |