Sanky
Sanky

Reputation: 21

Change autocomplete key

My tab key has stopped working, and as a result working on terminal has become painful. Is there a way I can reset my autocomplete key from tab to some other key? Also I do not have root access, so will it be possible for me to do it locally for my account?

Upvotes: 2

Views: 1347

Answers (2)

nhed
nhed

Reputation: 6001

Create a ~/.inputrc file with the following:

C-SPACE: complete

and start bash again. Control-space is now your additional auto-complete key

Upvotes: 11

mob
mob

Reputation: 118595

Use Ctrl-I, which also sends a tab character to the terminal.

Upvotes: 5

Related Questions