vote up 3 vote down star

:set ic ignores the case, how do you unset this?

flag

43% accept rate
For future reference, this would have give you your answer, :help 'ic' – Jeremy Michael Cantrell Jan 17 at 17:13
@Jaremy Centrell: but no reputation on SO ;-) – kyku Mar 7 at 16:54

3 Answers

vote up 7 vote down check

:set noic, or :set noignorecase

Really intuitive, right? :)

link|flag
In Vi I'm pretty sure you can also use :set noic (which is more intuitive) – Jason Down Jan 17 at 1:50
Sure,but even more intuitive, to me anyway, would be :unset ic. I guess I'll keep using vim anyway :) – Dave Ray Jan 17 at 1:52
Yes, that would be even nicer =) – Jason Down Jan 17 at 1:54
":help set" will tell you all about the :set command, including :set no{command} to unset a boolean, and even :set {command}! which toggles it – Gareth Jan 17 at 2:03
Cool, so you could do :set ic! to toggle it then? – Jason Down Jan 17 at 4:01
show 1 more comment
vote up 2 vote down

You can also toggle the setting with :set ic! and query its value with :set ic?

link|flag
vote up 0 vote down

Pay attention to 'smartcase' option. It overrides the 'ignorecase' option if the search pattern contains upper case characters.

i.e. having 'ignorecase' and 'smartcase' on /foo will find foo, Foo and FOO, but /Foo will find only Foo, not foo.

You can also tell Vim that you want to search case-sensitive despite of 'ignorecase' setting by using \C somewhere in the search pattern. By using \c in the search pattern you tell Vim to ignore case while searching, despite of 'ignorecase' setting.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.