add temporary fix for vim-signify integration (#188).

This commit is contained in:
Bailey Ling 2013-08-26 13:46:49 +00:00
parent 295fda2f74
commit 9194a9f02d
1 changed files with 8 additions and 0 deletions

View File

@ -10,6 +10,14 @@ function! s:init()
let s:initialized = 1
if get(g:, 'loaded_signify', 0)
function! s:get_hunks()
" this is a temporary fix (see #188)
let fname = fnamemodify(bufname('%'), ':p')
if has_key(g:sy, fname) && has_key(g:sy[fname], 'hunks')
if len(g:sy[fname].hunks) == 0
return [0, 0, 0]
endif
endif
let hunks = sy#repo#get_stats()
if hunks[0] >= 0
return hunks