From bbc79e089d9832071fe5ca7f56a5505a3ab7661b Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 9 Dec 2014 16:56:43 +0100 Subject: Fix #2842 (complete all existing options with /set-completion) --- src/core/completions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/core/completions.py') diff --git a/src/core/completions.py b/src/core/completions.py index a8d695d1..612144f6 100644 --- a/src/core/completions.py +++ b/src/core/completions.py @@ -304,7 +304,10 @@ def completion_set(self, the_input): plugin = self.plugin_manager.plugins[plugin_name] end_list = ['%s|%s' % (plugin_name, section) for section in plugin.config.sections()] else: - end_list = config.options('Poezio') + end_list = set(config.options('Poezio')) + end_list = end_list.union(set(config.default.get('Poezio', {}))) + end_list = list(end_list) + end_list.sort() elif n == 2: if '|' in args[1]: plugin_name, section = args[1].split('|')[:2] -- cgit v1.2.3