.vim/autoload/vimrc.vim

Sun, 26 Feb 2017 00:34:25 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 26 Feb 2017 00:34:25 -0500
changeset 526
fb818e5aec45
parent 470
4c2db769baac
child 574
3874b97048b0
permissions
-rw-r--r--

Fine-tune more


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