]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/ftdetect/mutt.vim
e7061746023a5970074fa63c07f2fed5fb8e38b1
[dotfiles.git] / vim / .vim / ftdetect / mutt.vim
1 function! s:KillSignature() abort
2     call cursor(1, 1)
3     call search('^[>|] \?-- \?$')
4     if getpos(".")[1] != 1
5         normal d}
6     endif
7 endfunction
8
9 autocmd BufRead /tmp/mutt-* call s:KillSignature()
10 autocmd BufRead /tmp/mutt-* setlocal textwidth=72
11 autocmd BufRead /tmp/mutt-* setlocal commentstring=>%s
12 autocmd BufRead /tmp/mutt-* silent %substitute /^> */>/e | set nohlsearch