Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to search for an upper case word, for example COPYRIGHT in a file. I tried performing a search like:

/copyright/i

but it doesn't work. I know that in Perl, if I give the i flag into a regex it will turn the regex into a case-insensitive regex. It seems that Vim has its own way to indicate a case-insensitive regex.

share|improve this question

5 Answers

up vote 331 down vote accepted

You need to use the \c escape sequence. So:

/\ccopyright

share|improve this answer
109  
Also, \c can appear anywhere in the pattern, so if you type a pattern and then decide you wanted a case-insensitive search, just add a \c at the end. – Alok Feb 18 '10 at 9:20
5  
I didn't know that! Very useful... – Chinmay Kanchi Feb 18 '10 at 9:21
1  
+1 for concise example, sincere thanks – KomodoDave Aug 22 '12 at 10:35

As well as the suggestions for \c and ignorecase, I find the smartcase very useful. If you search for something containing uppercase characters, it will do a case sensitive search; if you search for something purely lowercase, it will do a case insensitive search. You can use \c and \C to override this:

:set smartcase
/copyright      " Case insensitive
/Copyright      " Case sensitive
/copyright\C    " Case sensitive
/Copyright\c    " Case insensitive

See:

:help /\c
:help /\C
:help 'smartcase'
share|improve this answer
17  
The problem with ignorecase is that it affects substitutions as well as searches. I find that it makes sense to have (smart) case-insensitive searches but case-sensitive substitutions by default. But there's no way to do that that I know. – huyz Jul 2 '11 at 14:18
14  
Worth noting that for smartcase to work, you also need set ignorecase. Great tip though, thanks! – Skilldrick Mar 28 '12 at 18:59
1  
I believe you could just use a \C in your search expression for substitutions, like this: :%s/lowercasesearch\C/replaceString/g. This doesn't create the default functionality you desire, but it does allow you to force case-sensitivity for replacements while still benefiting from smartcase when searching. – Anthony DiSanti Oct 15 '12 at 23:44

You can set the ic option in Vim before the search:

:set ic

To go back to case-sensitive searches use:

:set noic

ic is shorthand for ignorecase

share|improve this answer

You can issue the command

:set ignorecase

and after that your searches will be case-insensitive.

share|improve this answer

To switch between case sensitive and insensitive search I use this mapping in my .vimrc

nmap <F9> :set ignorecase! ignorecase?

share|improve this answer
Just :set ignorecase! should work fine. – Chris Down Nov 11 '12 at 14:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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