.vim/ftplugin/mail.vim

Mon, 01 Aug 2016 15:23:12 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 01 Aug 2016 15:23:12 -0400
changeset 361
7ab7173fb61f
parent 352
a19225f9b247
child 368
91d4fb4e0a42
permissions
-rw-r--r--

add autofmt toggle


function! JumpAndInsert()
  if line('$') > 1
    :0
    :/^$/
    :normal 2] 
    :+1
    :exe 'startinsert'
  endif
endfunction

function! AutoFmtToggle()
  if &formatoptions =~ 'a'
    set fo-=a
    echo '-a'
  else
    set fo+=a
    echo '+a'
  endif
endfunction

augroup mail_filetype
  autocmd!
  autocmd BufReadPost mutt-* :call JumpAndInsert()
augroup END

setl textwidth=72
setl formatoptions=aw
setl spell

map <silent> <leader>a :call AutoFmtToggle()<CR>
imap <silent> <leader>a :call AutoFmtToggle()<CR>

mercurial