From 6f3910c666ddd92d09cc5551f776a82f6c0d4e63 Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Mon, 21 Apr 2008 01:25:33 -0500 Subject: skip blank lines before argument handling --- vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vimrc b/vimrc index 3ddd2c0..fbb89dd 100644 --- a/vimrc +++ b/vimrc @@ -217,8 +217,8 @@ function Perl_foldtext() while linenum <= v:foldend let linenum += 1 let next_line = getline(linenum) - " skip the opening brace and comment lines - if next_line =~ '\s*{\s*' || next_line =~ '^\s*#' + " skip the opening brace and comment lines and blank lines + if next_line =~ '\s*{\s*' || next_line =~ '^\s*#' || next_line == '' continue endif -- cgit v1.2.3