I am trying to troubleshoot why the bash tab-completion isn't working on my fedora 19 desktop. I am afraid I just know what else to add to this that might be relevant.
Asked
Active
Viewed 2.3k times
6
-
Do you have this in your .bashrc ? bind '"\t":menu-complete' – Nishant Nov 04 '13 at 18:10
-
I don't. But your answer made me think of /etc/bashrc that I source. It seems commenting that resolves this. – Humble Debugger Nov 04 '13 at 18:14
-
@Nishant isn't readline already setup? I don't have this set but completion works – Miserable Variable Nov 04 '13 at 18:15
-
1@MiserableVariable You are right. One should check /etc/bash_completion entry – Nishant Nov 04 '13 at 18:18
2 Answers
2
I solved this problem using the solution given at https://askubuntu.com/questions/325807/arrow-keys-tab-complete-not-working.

D-B
- 86
- 5
0
Another possible cause is lines like..:
set disable-completion on
.. in ~/.inputrc
. I don't know what puts that there, but if I deleted it then I found it was recreated every time I started a shell via firejail. However, if I edited it to off
instead of on
tab completion worked as usual.

nmr
- 16,625
- 10
- 53
- 67