I try to do this:
cd ~git\t
where the \t is tab character and I expect it to be expanded by bash_completion to this:
cd ~gitolite/
but it doesn't. I've uncommented the following lines in /etc/bash.bashrc and logged out and back in.
# enable bash completion in interactive shells
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
What gives?