diff options
author | Florent Le Coz <louiz@louiz.org> | 2012-05-22 21:11:32 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-05-22 21:12:07 +0200 |
commit | e1c7f63a3a186f802b91101513a839bb2b864c61 (patch) | |
tree | 7eb5216fa3602943e6bf4ef4dba3824847225460 | |
parent | b36247e7c9224a6a1a7eeaa7f8f96dcf33472c7c (diff) | |
download | poezio-e1c7f63a3a186f802b91101513a839bb2b864c61.tar.gz poezio-e1c7f63a3a186f802b91101513a839bb2b864c61.tar.bz2 poezio-e1c7f63a3a186f802b91101513a839bb2b864c61.tar.xz poezio-e1c7f63a3a186f802b91101513a839bb2b864c61.zip |
Add a few punctuation char to avoid in recent words completion.
-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 1b5c81e2..72e4dbda 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -412,7 +412,7 @@ class ChatTab(Tab): Complete the input with words recently said """ # build the list of the recent words - char_we_dont_want = string.punctuation+' ' + char_we_dont_want = string.punctuation+' ’„“”…«»' words = list() for msg in self._text_buffer.messages[:-40:-1]: if not msg: |