From a56926fd5bce27a8e0b9748d63be3aa396c0d7eb Mon Sep 17 00:00:00 2001 From: Jacobo de Vera Date: Mon, 8 Aug 2011 16:58:29 +0100 Subject: [PATCH] Mark installed buffer as not modified Installer buffer is marked as modified after each installation. Mark it as nomodified so that no warnings are shown when the buffer is closed. --- autoload/vundle/installer.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 8c75268..fcd87f7 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -57,6 +57,7 @@ func! vundle#installer#install(bang, name) abort else throw 'whoops, unknown status:'.status endif + set nomodified endf func! vundle#installer#helptags(bundles) abort