Friday, July 20, 2012

Re: Remove spaces and line breaks and make single line wihtout spaces

Another way to think about it...
Since it is html, remove all white spaces INCLUDING newlines between tags:

%s/>\_s\+</></

where:
%s/ search whole file
> the end of a tag
\_s all white space INCLUDING newlines
\+ one or more of the preceding
< beginning of the next tag
/></ replace with end and beginning tags

Bill

--
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

No comments:

Post a Comment