我如何 :Ggrep 忽略特定搜索的大小写?

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

有没有办法使用 :Ggrep 忽略大小写进行一次性搜索? 也就是说,我会在 shell?

中用 git grep -i search_term 做什么

标准 :vimgrep 建议将 \c 修饰符嵌入到搜索模式中,但 :Ggrep /\csearch_term/ 似乎根本不起作用。

所以,问题是:有没有办法让 :Ggrep 忽略特定搜索操作的大小写?

您可以将 -i/--ignore-case 标志用于 :Ggrep:

:Ggrep -i 'pattern'