我怎样才能让我的 vim 表现得像我的猫?

How can I make my vim behave like my cat?

目前我正在进行以下操作,vim 似乎莫名其妙地进入了它找到的第一个文件夹并从那里继续完成制表符。 当提示一个更完整的名字时,它只是给了我一个铃

~ $ cat .bash <TAB>
.bash/
.bash_history
.bash_profile
.bashrc

~ $ vim .bash <TAB>
~ $ vim .bash/ <TAB>
~ $ vim .bash/git-aware-prompt/

~ $ vim .bash_ <TAB>
<BELL>

在 OSX

上使用 vim 7.4.488

如何让我的 vim 表现得像我的猫?

有时这可能不在您的 .bashrc 中

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
    . /etc/bash_completion
fi

另一个可能的问题可以通过 运行

解决
complete -r vim

可以将vim条完成规则恢复为默认值。我希望这些建议可以帮助您指明正确的方向。