I want to debug a process, hence I attached strace to the process and redirected the output to a file and then performed the operation. During the process it has created a lot of processes. So here is what I want to do, I want to select all the system calls executed by a process. To do that I used grep command with pattern as pid:

:grep pid %

It shows the result but I am not able to traverse through the result, it promts

Press ENTER or type command to continue

and returns to the file. What I would like to do is store the result in a buffer and then have a look into it and if required save it into a file or else discard it and return to the original file. Is there a way to do this with out exiting from the vim editor? Thanks in advance.

I would like to search with the result and store that in a buffer.

link|improve this question

73% accept rate
Instead grep just use /pattern and then traverse it forward pressing N or backward pressing shift+N – Rahul Jun 16 '11 at 14:15
Are you trying to view all of them from within vim? /pid should help you search. Or do you want all those lines into a file? – Sai Jun 16 '11 at 14:17
/pattern will be helpful to search within a code but here I want all the searched lines gathered in one place. – hue Jun 16 '11 at 14:41
@Rahul: or use :g//p# to see grep like output for the whole buffer – sehe Jun 16 '11 at 15:01
2  
if you want to operate on all those lines: :g/pid/ normal >> will indent these lines, :v/pid/d deletes all other lines; – sehe Jun 16 '11 at 15:03
feedback

2 Answers

up vote 7 down vote accepted

You can go to older searches, and back easily:

:copen
:colder " goes to older
:cnewer " newer

You can have another search using lvimgrep (uses location window)

:lopen
:lnext
etc...

It also has history:

:lolder
:lnewer

You can read into any buffer:

:r!grep bla **/*.cs

Finally, any command that gives output, can be redirected with the redit command:

:redir >> file
:grep bla **/*.cs
:redir END

See :he redir for the many ways to use it (redirect into registers or variables).

link|improve this answer
in case of lvimgrep, after one search and lopen, how do I search in this window? – hue Jun 16 '11 at 16:03
in :r!grep bla */.cs can you explain it a bit more? what does grin means here? – hue Jun 16 '11 at 16:11
@hue: sry my html emoticon was confusing there. I meant to /joke/ that obviously the usual commands apply. ':r!' Reads the console output of any (shell) command – sehe Jun 16 '11 at 16:39
At your first question: you can use % to represent the current filename; you used that in your own question so I assumed you knew what it meant – sehe Jun 16 '11 at 16:45
feedback

I thought that :grep results were stored by default in the quickfix window.

Try to use :copen after running a grep command. I expect that you'll find your results there.

( :cclose to close the quickfix window)

It is not really a buffer, but as long as you are not starting another search your result list will stay intact.

You can "yank" the content of the quickfix window to a new buffer.

  • Go into quickfix with :copen
  • Yank its content with yG
  • open a new buffer with :new
  • Paste the content with p
  • Save it with :w Process1.txt

Repeat and rinse for multiple search/process.

link|improve this answer
xavier that was helpful. But yes I would like to start another search. – hue Jun 16 '11 at 14:37
@hue : I have added some info on how to save your results. However, it might cumbersome to repeat on multiple process. The correct solution would be to do the same steps with a Vim script function but I am not proficient enough in Vimscript to provide a solution quickly but I am sure that someone else will. – Xavier T. Jun 16 '11 at 15:03
Try looking at getqflist() and setqflist(). I know that they exist, though never used them actually. – ZyX Jun 16 '11 at 19:14
feedback

Your Answer

 
or
required, but never shown

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