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) -

xcode - Swift Playground - Files are not readable -

jboss7.x - JBoss AS 7.3 vs 7.4 and differences -