aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/mail.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/mail.vim')
-rw-r--r--vim/after/ftplugin/mail.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index ab5454bc..612dc523 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -12,12 +12,12 @@ if line('.') == 1 && col('.') == 1
call search('\m^>', 'c')
" Check this line to see if it's a generic hello-name greeting that we can
- " just strip out; delete the following line too, if it's blank
+ " just strip out; delete any following lines too, if they're blank
if getline('.') =~? '^>\s*\%(<hello\|hey\+\|hi\)\s\+\S\+\s*$'
delete
- if getline('.') =~# '^>$'
+ while getline('.') =~# '^>$'
delete
- endif
+ endwhile
endif
" Now move to the first quoted or unquoted blank line