I am using tab completion support of Term::ReadLine::Gnu module. Every time I do a tab, I get a space after the completed word.
For example:
If i have a word "complete" as a possible completion. After prompt I pressed tab and I am getting it like:
"complete "
where these is a space at the end of the completed word. What I want is:
"complete"
Is there any way to remove that space?