From fe9a7ca7bb883a68f70c6f3949d7f5902cdf384b Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Tue, 16 Feb 2010 14:02:36 +0000 Subject: fixed #1174 --- src/window.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/window.py b/src/window.py index 52865d09..54ff4353 100644 --- a/src/window.py +++ b/src/window.py @@ -353,7 +353,7 @@ class Input(Win): def auto_completion(self, user_list): if self.pos != len(self.text) or len(self.text) == 0: - return # we don't complete if cursos is not at the end of line + return # we don't complete if cursor is not at the end of line completion_type = config.get('completion', 'normal') if completion_type == 'shell': self.shell_completion(user_list) @@ -365,7 +365,10 @@ class Input(Win): self.last_key_tab = False def normal_completion(self, user_list): - after = config.get('after_completion', ',')+" " + if " " in self.text: + after = " " # don't put the "," if it's not the begining of the sentence + else: + after = config.get('after_completion', ',')+" " (y, x) = self.win.getyx() if not self.last_key_tab: # begin is the begining of the nick we want to complete @@ -395,6 +398,10 @@ class Input(Win): self.refresh() def shell_completion(self, user_list): + if " " in self.text: + after = " " # don't put the "," if it's not the begining of the sentence + else: + after = config.get('after_completion', ',')+" " after = config.get('after_completion', ',')+" " (y, x) = self.win.getyx() begin = self.text.split()[-1].encode('utf-8').lower() -- cgit v1.2.3