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
Post a Comment