summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-11-23 19:48:19 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-23 19:48:19 +0100
commit8918163609e55f6837722ff5c06b54fd0e316c9d (patch)
tree3135aeeba5446f13a07d7b4add7d0eb6982f2c82
parent52fd54d2ff382ec1a2dd3615a5ba7b28aaef12a9 (diff)
downloadpoezio-8918163609e55f6837722ff5c06b54fd0e316c9d.tar.gz
poezio-8918163609e55f6837722ff5c06b54fd0e316c9d.tar.bz2
poezio-8918163609e55f6837722ff5c06b54fd0e316c9d.tar.xz
poezio-8918163609e55f6837722ff5c06b54fd0e316c9d.zip
Nick completion doesn’t add a space after
-rw-r--r--src/tabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 23d30a8c..d08a8188 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -963,7 +963,7 @@ class MucTab(ChatTab):
self.input.get_text()[:input_pos] == self.input.last_completion + after):
add_after = after
else:
- add_after = ' '
+ add_after = ''
self.input.auto_completion(word_list, add_after, quotify=False)
empty_after = self.input.get_text() == '' or (self.input.get_text().startswith('/') and not self.input.get_text().startswith('//'))
self.send_composing_chat_state(empty_after)