From 5a1a7a567d22fdad490df76bf43669d56cf46325 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 19 Apr 2012 13:08:35 +0200 Subject: Do not quote the plugins on completion --- src/plugin_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugin_manager.py') diff --git a/src/plugin_manager.py b/src/plugin_manager.py index 98879841..40367052 100644 --- a/src/plugin_manager.py +++ b/src/plugin_manager.py @@ -213,10 +213,10 @@ class PluginManager(object): self.core.information(_('Completion failed: %s' % e), 'Error') return plugins_files = [name[:-3] for name in names if name.endswith('.py')] - return the_input.auto_completion(plugins_files, '') + return the_input.auto_completion(plugins_files, '', quotify=False) def completion_unload(self, the_input): """ completion function that completes the name of the plugins that are loaded """ - return the_input.auto_completion(list(self.plugins.keys()), '') + return the_input.auto_completion(list(self.plugins.keys()), '', quotify=False) -- cgit v1.2.3