summaryrefslogtreecommitdiff
path: root/src/tabs.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-04-18 00:23:28 +0200
committermathieui <mathieui@mathieui.net>2012-04-18 00:23:28 +0200
commit609f55a4d7f224e0994098558e2d9e7834edf8ec (patch)
treec157d7126bd6e2d5db3ac43fafedbe86f533a2e3 /src/tabs.py
parentc2e122d87377acbc6b512b7fe83d1461ac876288 (diff)
downloadpoezio-609f55a4d7f224e0994098558e2d9e7834edf8ec.tar.gz
poezio-609f55a4d7f224e0994098558e2d9e7834edf8ec.tar.bz2
poezio-609f55a4d7f224e0994098558e2d9e7834edf8ec.tar.xz
poezio-609f55a4d7f224e0994098558e2d9e7834edf8ec.zip
Quote everything that is completed by default, except commands
Diffstat (limited to 'src/tabs.py')
-rw-r--r--src/tabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 9c63f232..a87aed23 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -211,7 +211,7 @@ class Tab(object):
# complete the command's name
words = ['/%s'% (name) for name in self.core.commands] +\
['/%s' % (name) for name in self.commands]
- the_input.auto_completion(words, '')
+ the_input.auto_completion(words, '', quotify=False)
# Do not try to cycle command completion if there was only
# one possibily. The next tab will complete the argument.
# Otherwise we would need to add a useless space before being