Skip empty lines early on

Closes #3.
This commit is contained in:
Tim Pope 2013-01-07 18:12:10 -05:00
parent 0f918d94f6
commit fc28861b51
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ function! s:guess(lines) abort
for line in a:lines
if line =~# '^\s\+$'
if line =~# '^\s*$'
continue
endif