Vihaan Verma
Vihaan Verma

Reputation: 13143

How to open file from vim in case insensitive manner

Lets say you have a file ExAMplE.java in your current directory and you are editing some other file in the same directory using vim. I would open a file from vim using :e fileName but since the name of this file is all crappy , is there a way to make vim edit command suggest you the name of file ExAMple.java if you just type exam<tab> .

Upvotes: 9

Views: 1062

Answers (1)

romainl
romainl

Reputation: 196789

set wildignorecase

See :h 'wildignorecase'.

Upvotes: 18

Related Questions