From cceae04061694ce8ff1d5249871c80248f994a6e Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Wed, 17 Feb 2010 03:24:11 +0000 Subject: , after completion only at the begining --- src/window.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/window.py b/src/window.py index e2fcd634..301cc68c 100644 --- a/src/window.py +++ b/src/window.py @@ -365,7 +365,7 @@ class Input(Win): self.last_key_tab = False def normal_completion(self, user_list): - if " " in self.text: + if " " in self.text.strip(): after = " " # don't put the "," if it's not the begining of the sentence else: after = config.get('after_completion', ',')+" " @@ -398,11 +398,10 @@ class Input(Win): self.refresh() def shell_completion(self, user_list): - if " " in self.text: + if " " in self.text.strip(): 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() hit_list = [] # list of matching nicks -- cgit v1.2.3