>What sort of find/replace command should I use to delete the newline
>before the brace for all declarations?
>p {
> property: values;
>}
Highlight the section you want affected, else use marks, line numbers,
etc. Then use
:[range]s/\n{/{/
Where [range] is either "\<,\>" (visual), "'a,'b" (marks), "10,56"
(absolute line#s), etc., whatever range of lines you want to operate on.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---