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/
.
vi is case-sensitive; that is, uppercase commands ( I , A , J , etc.) are different from lowercase commands ( i , a , j ), so all your commands are being interpreted not as lowercase but as uppercase commands.
try this new feature: :set wildignorecase
This is not real answer. But if you install ambicmd, you will get good behavior to manipulate command lines.
https://github.com/thinca/vim-ambicmd
And add following into your vimrc
if globpath(&rtp, 'autoload/ambicmd.vim') != ''
cnoremap <expr> <Space> ambicmd#expand("\<Space>")
cnoremap <expr> <CR> ambicmd#expand("\<CR>")
endif
You'll get BundleInstall
with :bi<space>
maybe.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With