vim - How do I :Ggrep ignoring case for a particular search? -


is there way one-off search using :ggrep ignoring case? is, i'd git grep -i search_term in shell?

the standard :vimgrep suggest embedding \c modifier search pattern :ggrep /\csearch_term/ did not appear work @ all.

so, question: there way make :ggrep ignore case particular search action?

you can use -i/--ignore-case flag :ggrep:

:ggrep -i 'pattern' 

Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -