aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/after/ftplugin/mail.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index b14bb859..47c82bb6 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -45,7 +45,7 @@ for lnum in range(1, line('$'))
let line = getline(lnum)
" Get the leading quote string, if any; stop if there isn't one
- let quote = matchstr(line, '^[> \t]\+')
+ let quote = matchstr(line, '^[> ]\+')
if strlen(quote) == 0
continue
endif
@@ -54,7 +54,7 @@ for lnum in range(1, line('$'))
let quote = substitute(quote, '[^>]', '', 'g')
" Re-set the line
- let line = substitute(line, '^[> \t]\+', quote, '')
+ let line = substitute(line, '^[> ]\+', quote, '')
call setline(lnum, line)
endfor