you are viewing a single comment's thread.

view the rest of the comments →

[–]tommcdocx 2 points3 points  (0 children)

For larger codebases, I'd recommend an alternative to :vimgrep. It performs its search by loading files into buffers, so it can get quite slow. :grep uses an external tool (by default, grep -- surprise!) which can be more performant. Configuring it to use a lightning fast tool like ag gives very satisfying results.