Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

bash tab completion issues with ubuntu 12.04

I am having an issue with tab-completion that I am unable to solve. Specifically, whenever I try to tab-complete a directory, the completed directory name appears with a space following it instead of a forward slash to complete the rest. for example

~$ python ~/sof

tab-completes to

~$ python ~/software<space>

Instead of

~$ python ~/software/

Interestingly this does not happen with cd but with everything else it does.

like image 309
Farhat Avatar asked Feb 21 '13 07:02

Farhat


1 Answers

Apparently it is a known bug. Deleting /etc/bash_completion.d/acroread.sh solved the issue.

like image 196
Farhat Avatar answered Nov 19 '22 18:11

Farhat