So I decided to start from scratch rather then spending more then a day trying to battle kubuntu to take my new video card..on a clean install tab auto completion only work to an extent! For example if I type "sudo apt-g" <tab> it completes the apt-get part for me.If I type "sudo apt-get in" <tab> it completes the word install for me. However, the problem lies in suggesting package names. if I type "sudo apt-get install cal" <tab> it does nothing to suggest Calligra Suite or any Calligra tools. I reinstalled bash autcompletiion. I also uncomented everything related to auto completion in /etc/bash.bashrc
What am I missing?
Code:
# enable bash completion in interactive shells #if ! shopt -oq posix; then # if [ -f /usr/share/bash-completion/bash_completion ]; then # . /usr/share/bash-completion/bash_completion # elif [ -f /etc/bash_completion ]; then # . /etc/bash_completion # fi #fi
Comment