:cs find e expects an egrep pattern. Since egrep is not case-insensitive by default there's no reason to expect the pattern regexp to match regexp, REGEXP, etc.
Also, egrep doesn't honor (?i).
To make cscope's search (all search methods, not only egrep) case-insensitive by default, you must add the -C flag to your initialization command:
:cs find e
expects anegrep
pattern. Sinceegrep
is not case-insensitive by default there's no reason to expect the patternregexp
to matchregexp
,REGEXP
, etc.Also,
egrep
doesn't honor(?i)
.To make cscope's search (all search methods, not only
egrep
) case-insensitive by default, you must add the-C
flag to your initialization command: