.vim/autoload/vimrc.vim

Fri, 28 Apr 2017 15:00:20 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 28 Apr 2017 15:00:20 -0400
changeset 552
1a131edec257
parent 470
4c2db769baac
child 574
3874b97048b0
permissions
-rw-r--r--

Nice up pandoc-html thing


function! vimrc#AutoFmtToggle() abort
  if &formatoptions =~ 'a'
    setl fo-=a
    echo '-a'
  else
    setl fo+=a
    echo '+a'
  endif
endfunction

" Make paths when writing, as necessary
function! vimrc#MkNonExDir(file, buf) abort
  if empty(getbufvar(a:buf, '&buftype')) && a:file!~#'\v^\w+\:\/'
    let dir=fnamemodify(a:file, ':h')
    if !isdirectory(dir)
      call mkdir(dir, 'p')
    endif
  endif
endfunction

mercurial