On Tue, Jun 18, 2019 at 09:54:42AM -0500, Vincent Povirk (they/them) wrote:
With +relay logs I've often found it useful to delete lines that I'm reasonably sure are not relevant. In Vim, the :g/pattern/d command will delete all matching lines, for example :g/ntdll.RtlHeap/d will remove heap-related calls. This has a side-effect of moving your cursor, so it's important to keep a bookmark you can return to afterwards.
I have a similar script that does this with grep:
https://gitlab.com/mywinetools/mywinetools/blob/master/filter_junk
Andrew