>I have a need to use '/' to find something in a file, but I wish it >to ignore case.
>So say I'm looking for 'foo' then I want to find all instances for
>'foo' and 'FOO'
Can try
:set ignorecase
or
:set ic
to do so. Former will almost always work, latter works on some variants
of 'vi' but not all.
