]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/plugin/killsig.vim
d85742562c297e5876938a5ca855471cfbc4a700
[dotfiles.git] / vim / .vim / plugin / killsig.vim
1 function! s:KillSignature()
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()