How do I search across files with lvimgrep and keep results in a window-local location list?
:lvimgrep /pattern/j **/* | lopen
Quickfix is great, but it is global.
:lvimgrep /pattern/j **/* | lopen
Quickfix is great, but it is global.
:vimgrep /\<TODO\>/gj **/*.lua | copen
When you want a project-wide TODO pass without leaving Vim, :vimgrep plus quickfix is a strong built-in workflow.
search #search #quickfix #command-line #project-navigation #ex-commands