regex - Cscope insensitive search -


i trying case insentive search in vim cscope. example:

:cs find e regexp 

should find regexp, regexp, regexp , on... how can this? i've been trying (?i) in front of expression, didn't help.

:cs find e expects egrep pattern. since egrep not case-insensitive default there's no reason expect pattern regexp match regexp, regexp, etc.

also, egrep doesn't honor (?i).

to make cscope's search (all search methods, not egrep) case-insensitive default, must add -c flag initialization command:

:cscope add cscope.out -c 

Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -