Do not quote the plugins on completion
This commit is contained in:
parent
46c197ef7f
commit
5a1a7a567d
1 changed files with 2 additions and 2 deletions
|
@ -213,10 +213,10 @@ class PluginManager(object):
|
||||||
self.core.information(_('Completion failed: %s' % e), 'Error')
|
self.core.information(_('Completion failed: %s' % e), 'Error')
|
||||||
return
|
return
|
||||||
plugins_files = [name[:-3] for name in names if name.endswith('.py')]
|
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):
|
def completion_unload(self, the_input):
|
||||||
"""
|
"""
|
||||||
completion function that completes the name of the plugins that are loaded
|
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)
|
||||||
|
|
Loading…
Reference in a new issue