mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
9 lines
246 B
VimL
9 lines
246 B
VimL
function! s:genSrcInfo()
|
|
:call system('rm -rf .SRCINFO; makepkg --printsrcinfo > .SRCINFO')
|
|
endfunction
|
|
|
|
augroup dotfilesftdetect
|
|
autocmd BufWritePost PKGBUILD :call s:genSrcInfo()
|
|
|
|
autocmd BufNewFile,BufRead *.dream setf dream
|
|
augroup END
|