Computer Tips - How can I make vim ignore case in searches?

Date: 2009mar22 OS: Linux Product: vim Importance: necessary Q. How can I make vim ignore case in searches? A. If you always want vim to ignore case, add:
set ignorecase
to /etc/vimrc If you just want it to do it for a session, while in vim, do:
:set ic
Use
:set noic
to turn it off.