Fold away empty lines

From Vim Tips Wiki

Jump to: navigation, search
Tip 399 Printable Monobook Previous Next

created 2003 · complexity basic · author Thomas · version 6.0


You can fold sequences of two or more empty lines (may contain whitespace) with these settings:

:syn match MyEmptyLines "\(^\s*\n\)\+" fold
:syn sync fromstart
:setlocal foldmethod=syntax

After entering the above, type zM to close all folds, or zR to open them.

If you have set 'foldcolumn' to more than 0 you can open/close the empty-line blocks by clicking the '+' or '-' with the mouse in the folder column.

[edit] See also

[edit] Comments

Personal tools