Run autocommands after writing to index

This commit is contained in:
Tim Pope 2009-10-22 22:22:17 -04:00
parent 6ebcc05312
commit 42e0208276

View File

@ -1093,6 +1093,7 @@ function! s:BufWriteIndexFile()
let error = system(s:repo().git_command('update-index','--index-info').' < '.tmp) let error = system(s:repo().git_command('update-index','--index-info').' < '.tmp)
if v:shell_error == 0 if v:shell_error == 0
setlocal nomodified setlocal nomodified
silent execute 'doautocmd BufWritePost '.s:fnameescape(expand('%:p'))
call s:ReloadIndex() call s:ReloadIndex()
return '' return ''
else else