From e9d2bc6b4e0a912fa1256f38137233dd2056fada Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 14 Aug 2018 15:38:03 +1200 Subject: Delete multiple blank lines after skipped greeting --- vim/after/ftplugin/mail.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vim/after') 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*\%($' + while getline('.') =~# '^>$' delete - endif + endwhile endif " Now move to the first quoted or unquoted blank line -- cgit v1.2.3