vote up 1 vote down star

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?

flag

71% accept rate

1 Answer

vote up 6 vote down check

Try this (untested) in your completion function:

my $attribs = $term->Attribs;
$attribs->{completion_suppress_append} = 1;

This corresponds to the rl_completion_suppress_append variable in GNU readline.

link|flag
ya.. it works man!!.. thanks a lot!! :) – Anandan Oct 22 at 11:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.