add a space after the nick when autocompletion is done
This commit is contained in:
parent
0bec214a8e
commit
864623f1ea
|
@ -714,7 +714,7 @@ class gc:
|
||||||
begin = txt.split()[-1]
|
begin = txt.split()[-1]
|
||||||
for nick in list_nick:
|
for nick in list_nick:
|
||||||
if nick.find(begin) == 0:
|
if nick.find(begin) == 0:
|
||||||
txt_buffer.insert_at_cursor(nick[len(begin):])
|
txt_buffer.insert_at_cursor(nick[len(begin):] + ' ')
|
||||||
return 1
|
return 1
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue