dotfiles/nvim/ftdetect/dotfiles.vim
2022-01-18 10:06:39 +01:00

8 lines
197 B
VimL

function! s:genSrcInfo()
:call system('rm -rf .SRCINFO; makepkg --printsrcinfo > .SRCINFO')
endfunction
augroup dotfilesftdetect
autocmd BufWritePost PKGBUILD :call s:genSrcInfo()
augroup END