From 42e0208276bccb998ed38294b9a43ffbeed85afb Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 22 Oct 2009 22:22:17 -0400 Subject: [PATCH] Run autocommands after writing to index --- plugin/fugitive.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index a4ddc10..a657145 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -1093,6 +1093,7 @@ function! s:BufWriteIndexFile() let error = system(s:repo().git_command('update-index','--index-info').' < '.tmp) if v:shell_error == 0 setlocal nomodified + silent execute 'doautocmd BufWritePost '.s:fnameescape(expand('%:p')) call s:ReloadIndex() return '' else