dotfiles/nvim/autoload/opdavies.vim

13 lines
253 B
VimL
Raw Normal View History

if !exists('*opdavies#save_and_exec')
function! opdavies#save_and_exec() abort
if &filetype == 'vim'
:silent! write
:source %
elseif &filetype == 'lua'
:silent! write
:luafile %
endif
return
endfunction
endif