Bash Completion in Gentoo
Tuesday, August 30th, 2005In Gentoo, bash-completion is not enabled by default, so for each package compiled with bash-completion support, we need to manually enable it for completion. Here’re the relevant steps and tools to manage bash-completion.
$ emerge bash-completion eselect
Activate bash-completion in bashrc:
[[ -f /etc/profile.d/bash-completion ]] && source /etc/profile.d/bash-completion
Add to USE flag, so packages can be compiled with bash-completion [...]