Subject: Re: ksh and tab completion
To: Giles Lean <giles@nemeton.com.au>
From: Frederick Bruckman <fb@enteract.com>
List: netbsd-users
Date: 03/19/2001 14:32:25
On Tue, 20 Mar 2001, Giles Lean wrote:

> > 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


Frederick