vote up 2 vote down star
1

Basically I need to create a quickfix buffer listing all lines that match a regex. What is the best way?

The global command may not be the best, but I think it should be usable. The output of the global command is perfect, but I need it to hyperlink the matching lines.

flag

78% accept rate

2 Answers

vote up 5 vote down check

Use caddexpr:-

g/<pattern>/caddexpr expand("%") . ":" . line(".") . ":" . getline(".")
link|flag
Cool ... and then a call to :cwindow, of course. – Dave Ray Aug 25 at 20:07
vote up 1 vote down

You can also not use the global command and stick with what is built-in. Use the vimgrep command as below:

:vimgrep /pattern/ %

And then :copen or :cwindow

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.