diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-13 18:45:44 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-11-13 18:45:44 +0100 |
commit | ba7ee1d76c059a4d921a8f62e680dcf8d16adfa6 (patch) | |
tree | 64415a46a16440354b6ecb247b944aa3843c2c79 /src/tabs.py | |
parent | 587a74df6ea7b2e6bbca4c3e1eec5c096309cb7c (diff) | |
download | poezio-ba7ee1d76c059a4d921a8f62e680dcf8d16adfa6.tar.gz poezio-ba7ee1d76c059a4d921a8f62e680dcf8d16adfa6.tar.bz2 poezio-ba7ee1d76c059a4d921a8f62e680dcf8d16adfa6.tar.xz poezio-ba7ee1d76c059a4d921a8f62e680dcf8d16adfa6.zip |
Tweak auto_completion in order to add quotes only when needed
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index feb4be37..27c23e95 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -905,7 +905,7 @@ class MucTab(ChatTab): add_after = after else: add_after = ' ' - self.input.auto_completion(word_list, 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) |