From e1c7f63a3a186f802b91101513a839bb2b864c61 Mon Sep 17 00:00:00 2001
From: Florent Le Coz <louiz@louiz.org>
Date: Tue, 22 May 2012 21:11:32 +0200
Subject: Add a few punctuation char to avoid in recent words completion.

---
 src/tabs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src')

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:
-- 
cgit v1.2.3