vote up 6 vote down star
5

Example bad:

#main {
      padding:0;
      margin: 10px auto;
}

Example good:

#main {padding:0;margin:10px auto;}

I have a ton of CSS rules that are taking up too many lines. And I cannot figure out the :%s/ commands to use.

flag

57% accept rate
+1 thanks for the question. learned a lot from rampion's answer! – Vijay Dev Sep 15 at 17:51

6 Answers

vote up 9 vote down check

Here's a one-liner:

:%s/{\_.\{-}}/\=substitute(submatch(0), '\n', '', 'g')/

\_. matches any character, including a newline, and \{-} is the non-greedy version of *, so {\_.\{-}} matches everything between a matching pair of curly braces, inclusive.

The \= allows you to substitute the result of a vim expression, which we here use to strip out all the newlines '\n' from the matched text (in submatch(0)) using the substitute() function.

The inverse (converting the one-line version to multi-line) can also be done as a one liner:

:%s/{\_.\{-}}/\=substitute(submatch(0), '[{;]', '\0\r', 'g')/
link|flag
Thanks a lot. This is awesome. Conversely, how would you convert a bunch of one-line CSS rules into the multiple line format? – mager Sep 14 at 20:01
1  
You don't need to play with \= to do the reverse operation. A simple :%s/[{;]/&\r/g | gg=G is more than enough. – Luc Hermitte Sep 15 at 8:27
wish I could upvote more than once! – Vijay Dev Sep 15 at 17:50
vote up 3 vote down

I won't answer the question directly, but instead I suggest you to reconsider your needs. I think that your "bad" example is in fact the better one. It is more readable, easier to reason about and modify. Good indentation is very important not only when it comes to programming languages, but also in CSS and HTML.

You mention that CSS rules are "taking up too many lines". If you are worried about file size you should consider using CSS/JS minifier like YUI Compressor instead of making the code less readable.

link|flag
vote up 2 vote down

If you want to change the file, go for rampion's solution.

If you don't want (or can't) change the file, you can play with a custom folding as it permits to choose what and how to display the folded text. For instance:

" {rtp}/fold/css-fold.vim
" [-- local settings --]               {{{1
setlocal foldexpr=CssFold(v:lnum)
setlocal foldtext=CssFoldText()

let b:width1 = 20
let b:width2 = 15

nnoremap <buffer> + :let b:width2+=1<cr><c-l>
nnoremap <buffer> - :let b:width2-=1<cr><c-l>

" [-- global definitions --]           {{{1
if exists('*CssFold')
  setlocal foldmethod=expr
  " finish
endif

function! CssFold(lnum)
  let cline = getline(a:lnum)
  if     cline =~ '{\s*$'
      return 'a1'
  elseif cline =~ '}\s*$'
      return 's1'
  else
      return '='
  endif
endfunction

function! s:Complete(txt, width)
  let length = strlen(a:txt)
  if length > a:width
      return a:txt
  endif
  return a:txt . repeat(' ', a:width - length)
endfunction

function! CssFoldText()
  let lnum = v:foldstart
  let txt = s:Complete(getline(lnum), b:width1)
  let lnum += 1
  while lnum < v:foldend
      let add = s:Complete(substitute(getline(lnum), '^\s*\(\S\+\)\s*:\s*\(.\{-}\)\s*;\s*$', '\1: \2;', ''), b:width2)
      if add !~ '^\s*$'
          let txt .= ' ' . add
      endif

      let lnum += 1
  endwhile
  return txt. '}'
endfunction

I leave the sorting of the fields as exercise. Hint: get all the lines between v:foldstart+1 and v:voldend in a List, sort the list, build the string, and that's all.

link|flag
vote up 0 vote down

Go to the first line of the file, and use the command gqG to run the whole file through the formatter. Assuming runs of nonempty lines should be collapsed in the whole file.

link|flag
vote up 9 vote down

If you are at the beginning or end of the rule, V%J will join it into a single line:

  • Go to the opening (or closing) brace
  • Hit V to enter visual mode
  • Hit % to match the other brace, selecting the whole rule
  • Hit J to join the lines
link|flag
1  
+1, this is vi way. – Michael Krelin - hacker Sep 14 at 17:26
this is not the vi way, it's the vim way – soulmerge Sep 14 at 17:42
Thanks, this is really cool. Now I understand visual mode a little better. – mager Sep 14 at 17:46
Well, soulmerge, first I wanted to say vim way, but then it is a vi way even if this particular command is not compatible with plain vi (I'm not even sure it isn't). – Michael Krelin - hacker Sep 14 at 18:00
It's not compatible with plain vi. But the question is tagged as vim and I guess the vast majority of people normally use vim, so the answer should be useful. – sth Sep 14 at 18:19
show 2 more comments
vote up 4 vote down

Try something like this:

:%s/{\n/{/g
:%s/;\n/;/g
:%s/{\s+/{/g
:%s/;\s+/;/g

This removes the newlines after opening braces and semicolons ('{' and ';') and then removes the extra whitespace between the concatenated lines.

link|flag

Your Answer

Get an OpenID
or

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