What command can I run to remove blank lines in Vim?

link|improve this question

80% accept rate
feedback

7 Answers

up vote 123 down vote accepted
:g/^$/d

:g will execute a command on lines which match a regex. The regex is 'blank line' and the command is :d (delete)

link|improve this answer
2  
Thanks soulmerge. This is my favorite answer, since it actually explains what the :g command does. – Tim Swast Aug 15 '11 at 19:03
feedback

Found it, it's:

g/^\s*$/d
link|improve this answer
Nice. But not exactly a blank line. – innaM Apr 1 '09 at 16:00
2  
Ah, yes, this will match lines containing only whitespace characters. I'll accept soulmerge's answer. – nearly_lunchtime Apr 2 '09 at 9:18
3  
that should match blank lines AND lines composed only of whitespaces... (* matches zero or multiple instances of \s...)? – monojohnny Apr 15 '11 at 11:59
feedback
:v/./d

or

:g/^$/d

or

:%!cat -s
link|improve this answer
2  
Neat trick with the :v/./d (easier to type) but then you need to do a :nohl after. – Claes Mogren May 11 '11 at 8:05
feedback

The following can be used to remove only multi blank lines (reduce them to a single blank line) and leaving single blank lines intact:

:g/^\_$\n\_^$/d
link|improve this answer
feedback

How about:

:g/^[ \t]*$/d
link|improve this answer
\s works for tabs too. – Mykola Golubyev Apr 1 '09 at 15:39
feedback

work with perl in vim:

:%!perl -pi -e s/^\s*$//g

link|improve this answer
feedback

This function only remove two or more blank lines, put lines below in your vimrc, then use \d to call function

fun! DelBlank()
   let _s=@/
   let l = line(".")
   let c = col(".")
   :g/^\n\{2,}/d
   let @/=_s
   call cursor(l, c)
   endfun
map <special> <leader>d :keepjumps call DelBlank()<cr>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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