Quantcast
Channel: How to do case insensitive search in Vim - Stack Overflow
Viewing all articles
Browse latest Browse all 17

Answer by Chinmay Kanchi for How to do case insensitive search in Vim

$
0
0

You can use the \c escape sequence anywhere in the pattern. For example:

/\ccopyright or /copyright\c or even /copyri\cght

To do the inverse (case sensitive matching), use \C (capital C) instead.


Viewing all articles
Browse latest Browse all 17

Trending Articles