I have the following line in my ~/.inputrc
:
set completion-ignore-case on
So that, in the shell, autocompletion happens case-insensitively. Is there something like this for Vim's Ex mode? I want to be able to type :bundlei<Tab>
and get it autocompleted to :BundleInstall
. Likewise, I want to type :e ~/doc<Tab>
and get :e ~/Documents/
.
:help completeopt
has text indicating thatignorecase
might be used forlongest
mode matches onl from buffer text. This doesn't look promising. – sarnold Apr 25 '12 at 0:19