add to .bashrc:
complete -r (removes all rules)
or
shopt -u progcomp (disables programmable completion entirely)
shopt -s progcomp (re-enables it)

it is probably necessary to use one of the above, rather than just commenting
out the programmable completion bit of your .bashrc, since the system bashrc
files also turn it on.