On Wednesday, March 21, 2012 4:42:38 AM UTC-5, Jeri Raye wrote: > Hi > > I have a compiler log with too many lines. > I would like to strip that document to only the lines I want. > > How to that? >
It's a compiler log. How about using Vim's quickfix capabilities to parse, present, and USE it in a nice way? :help quickfix You don't mention what compiler you are using. There may already be a compiler plugin defined for it, in which case :compiler nameOfCompiler will set everything up for you. Otherwise, you will need to set (at least) the 'errorformat' option. :help 'errorformat' If you use it a lot, defining your own compiler plugin might be worthwhile. :help write-compiler-plugin -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
