diff options
author | mathieui <mathieui@mathieui.net> | 2012-04-18 00:35:24 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-04-18 00:35:24 +0200 |
commit | d52f5ba40f4f894dfa43162c4e1785ec7345d780 (patch) | |
tree | 2b048353314ae5976133c6db7b77f033b70c75c0 /src/core.py | |
parent | 609f55a4d7f224e0994098558e2d9e7834edf8ec (diff) | |
download | poezio-d52f5ba40f4f894dfa43162c4e1785ec7345d780.tar.gz poezio-d52f5ba40f4f894dfa43162c4e1785ec7345d780.tar.bz2 poezio-d52f5ba40f4f894dfa43162c4e1785ec7345d780.tar.xz poezio-d52f5ba40f4f894dfa43162c4e1785ec7345d780.zip |
Do not quotify completions where it is not allowed
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core.py b/src/core.py index 13eea3e1..627f7f5c 100644 --- a/src/core.py +++ b/src/core.py @@ -1393,7 +1393,7 @@ class Core(object): def completion_help(self, the_input): commands = list(self.commands.keys()) + list(self.current_tab().commands.keys()) - return the_input.auto_completion(commands, ' ') + return the_input.auto_completion(commands, ' ', quotify=False) def command_status(self, arg): """ @@ -1615,7 +1615,7 @@ class Core(object): theme_files = [name[:-3] for name in names if name.endswith('.py')] if not 'default' in theme_files: theme_files.append('default') - return the_input.auto_completion(theme_files, '') + return the_input.auto_completion(theme_files, '', quotify=False) def command_win(self, arg): """ @@ -1651,7 +1651,7 @@ class Core(object): def completion_win(self, the_input): l = [JID(tab.get_name()).user for tab in self.tabs] l.remove('') - return the_input.auto_completion(l, ' ') + return the_input.auto_completion(l, ' ', quotify=False) def completion_join(self, the_input): """ @@ -1761,7 +1761,7 @@ class Core(object): n = len(the_input.get_text().split()) if n > 2 or (n == 2 and the_input.get_text().endswith(' ')): return - return the_input.auto_completion([contact.bare_jid for contact in roster.get_contacts()], '') + return the_input.auto_completion([contact.bare_jid for contact in roster.get_contacts()], '', quotify=False) def completion_list(self, the_input): muc_serv_list = [] @@ -1770,7 +1770,7 @@ class Core(object): tab.get_name() not in muc_serv_list: muc_serv_list.append(JID(tab.get_name()).server) if muc_serv_list: - return the_input.auto_completion(muc_serv_list, ' ') + return the_input.auto_completion(muc_serv_list, ' ', quotify=False) def command_join(self, arg, histo_length=None): """ |