I'd like to search a upper case word, for example COPYRIGHT in a file . then I try to do the search like:
/copyright/i
but it doesn't work. I know in Perl if give the i
flag into a regex it will turn the regex to a case-insensitive regex. Seems that Vim has its own way to indicate a case-insensitive regex.