Subject: Re: ksh and tab completion
To: Frederick Bruckman <fb@enteract.com>
From: None <wojtek@wojtek.from.pl>
List: netbsd-users
Date: 03/19/2001 21:37:42
> > > does anybody know how to make tabcompletion in ksh?
> >
> > In .kshrc or similar:
> >
> > 	bind "^I=complete"
> > 	bind "^I^I=complete-list"
> >
> > The sequence ^I is two characters, not a single control character.
> 
> Or for the vi-ish way,
> 
> set -o vi
> set -o vi-tabcomplete
unfortunately both does not work.

it looks like ksh don't like to process any control characters and works
in linemode.

any ideas?