diff options
author | Maxime Buquet <pep@bouah.net> | 2020-03-26 00:33:55 +0100 |
---|---|---|
committer | Maxime Buquet <pep@bouah.net> | 2020-03-26 00:33:55 +0100 |
commit | 2101439e8693e3be233e59280b0386f0622c756e (patch) | |
tree | bc95e12b772d906ee5cf5a5111b56bacdff68424 /plugins | |
parent | b2e6d29c4ce8b380cf988b6007da81b687972402 (diff) | |
parent | dae4aeb3bb789b7af47c3137476543366c96314b (diff) | |
download | poezio-2101439e8693e3be233e59280b0386f0622c756e.tar.gz poezio-2101439e8693e3be233e59280b0386f0622c756e.tar.bz2 poezio-2101439e8693e3be233e59280b0386f0622c756e.tar.xz poezio-2101439e8693e3be233e59280b0386f0622c756e.zip |
Merge branch 'plugin-debug' into 'master'
Plugin debug
See merge request poezio/poezio!70
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/reorder.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/plugins/reorder.py b/plugins/reorder.py index 32fa6639..8d9516f8 100644 --- a/plugins/reorder.py +++ b/plugins/reorder.py @@ -117,6 +117,8 @@ def parse_runtime_tablist(tablist): class Plugin(BasePlugin): + """reorder plugin""" + def init(self): self.api.add_command( 'reorder', @@ -129,20 +131,24 @@ class Plugin(BasePlugin): help='Save the current tab layout') @command_args_parser.ignored - def command_save_order(self): + def command_save_order(self) -> None: + """ + /save_order + """ conf = parse_runtime_tablist(self.core.tabs) for key, value in conf: self.config.set(key, value) self.api.information('Tab order saved', 'Info') @command_args_parser.ignored - def command_reorder(self): + def command_reorder(self) -> None: """ /reorder """ tabs_spec = parse_config(self.config) if not tabs_spec: - return self.api.information('Invalid reorder config', 'Error') + self.api.information('Invalid reorder config', 'Error') + return None old_tabs = self.core.tabs.get_tabs() roster = old_tabs.pop(0) @@ -173,3 +179,5 @@ class Plugin(BasePlugin): self.core.tabs.replace_tabs(new_tabs) self.core.refresh_window() + + return None |