From 06f84c898d10ecb719687248e72be722a7462cb8 Mon Sep 17 00:00:00 2001 From: gmarik Date: Thu, 4 Aug 2011 16:48:59 -0500 Subject: [PATCH] Add Active state and change signs - > active - + updated - . up to date - ! error --- autoload/vundle.vim | 3 ++- autoload/vundle/installer.vim | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/autoload/vundle.vim b/autoload/vundle.vim index a499c08..c6541a3 100644 --- a/autoload/vundle.vim +++ b/autoload/vundle.vim @@ -28,8 +28,9 @@ au Filetype vundle call vundle#scripts#setup_view() au Syntax vim syn keyword vimCommand Bundle sign define VuEr text=! texthl=Error +sign define VuAc text=> texthl=Comment sign define VuCu text=. texthl=Comment -sign define VuUp text=* texthl=Comment +sign define VuUp text=+ texthl=Comment func! vundle#rc(...) abort diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index c686987..e2f0f69 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -46,6 +46,7 @@ func! vundle#installer#install(bang, name) abort let b = vundle#config#init_bundle(a:name, {}) echo 'Installing '.b.name + exe ":sign place ".line('.')." line=".line('.')." name=VuAc buffer=" . bufnr("$") let status = s:sync(a:bang, b)