mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2026-06-14 22:08:38 +00:00
5 lines
158 B
VimL
5 lines
158 B
VimL
function! s:genSrcInfo()
|
|
:call system('rm -rf .SRCINFO; makepkg --printsrcinfo > .SRCINFO')
|
|
endfunction
|
|
|
|
autocmd BufWritePost PKGBUILD :call s:genSrcInfo()
|