From 864623f1ea65662694e6efd5370292d1a5ac863a Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sat, 5 Mar 2005 00:12:15 +0000 Subject: [PATCH] add a space after the nick when autocompletion is done --- plugins/gtkgui/gtkgui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gtkgui/gtkgui.py b/plugins/gtkgui/gtkgui.py index 409e2d0c7..d699e4f50 100644 --- a/plugins/gtkgui/gtkgui.py +++ b/plugins/gtkgui/gtkgui.py @@ -714,7 +714,7 @@ class gc: begin = txt.split()[-1] for nick in list_nick: if nick.find(begin) == 0: - txt_buffer.insert_at_cursor(nick[len(begin):]) + txt_buffer.insert_at_cursor(nick[len(begin):] + ' ') return 1 return 0