.vim/autoload/vimrc.vim

Mon, 27 Mar 2017 17:13:20 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 27 Mar 2017 17:13:20 -0400
changeset 536
4d01cb9a0bb1
parent 470
4c2db769baac
child 574
3874b97048b0
permissions
-rw-r--r--

add vinarise - hex edit helper


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