Sometimes it happens that itβs not in your .bashrc
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
Another possible problem can be solved at startup.
complete -r vim
which can restore the default vim termination rules. I hope these suggestions help you point you in the right direction.
source
share