Browse Source

Add Active state and change signs

- > active
- + updated
- . up to date
- ! error
pull/73/head
gmarik 15 years ago
parent
commit
06f84c898d
2 changed files with 3 additions and 1 deletions
  1. +2
    -1
      autoload/vundle.vim
  2. +1
    -0
      autoload/vundle/installer.vim

+ 2
- 1
autoload/vundle.vim View File

@ -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


+ 1
- 0
autoload/vundle/installer.vim View File

@ -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)


Loading…
Cancel
Save