diff options
author | mathieui <mathieui@mathieui.net> | 2017-12-27 20:28:29 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2017-12-27 20:28:29 +0100 |
commit | fbb0f8d8a663cbf01797ae8d5a87cb4c09ee6525 (patch) | |
tree | dfe8869718bca713e542a9ad6fd24124f28922be | |
parent | 03a2e21ed7a53a36f8ccc4d7e9753ef4f5020a98 (diff) | |
download | poezio-fbb0f8d8a663cbf01797ae8d5a87cb4c09ee6525.tar.gz poezio-fbb0f8d8a663cbf01797ae8d5a87cb4c09ee6525.tar.bz2 poezio-fbb0f8d8a663cbf01797ae8d5a87cb4c09ee6525.tar.xz poezio-fbb0f8d8a663cbf01797ae8d5a87cb4c09ee6525.zip |
Fix #3361 (/correct [tab][tab] breaks the line)
-rw-r--r-- | poezio/tabs/basetabs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/poezio/tabs/basetabs.py b/poezio/tabs/basetabs.py index 5680d1e1..a155cbd0 100644 --- a/poezio/tabs/basetabs.py +++ b/poezio/tabs/basetabs.py @@ -716,6 +716,7 @@ class ChatTab(Tab): the_input.auto_completion, [self.last_sent_message['body']], '', quotify=False) + return True @property def inactive(self): |