2013-08-18 21:02:33 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2013-08-20 03:44:24 +00:00
|
|
|
let s:non_zero_only = get(g:, 'airline#extensions#hunks#non_zero_only', 0)
|
|
|
|
let s:hunk_symbols = get(g:, 'airline#extensions#hunks#hunk_symbols', ['+', '~', '-'])
|
2013-08-20 03:32:14 +00:00
|
|
|
|
2013-08-20 15:43:26 +00:00
|
|
|
let s:initialized = 0
|
|
|
|
function! s:init()
|
|
|
|
if !s:initialized
|
|
|
|
let s:initialized = 1
|
2013-08-21 23:24:56 +00:00
|
|
|
if get(g:, 'loaded_signify', 0)
|
2013-08-20 15:43:26 +00:00
|
|
|
function! s:get_hunks()
|
2013-08-26 13:46:49 +00:00
|
|
|
" 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
|
|
|
|
|
2013-08-20 15:43:26 +00:00
|
|
|
let hunks = sy#repo#get_stats()
|
2013-08-21 23:24:56 +00:00
|
|
|
if hunks[0] >= 0
|
|
|
|
return hunks
|
|
|
|
endif
|
|
|
|
return []
|
2013-08-20 15:43:26 +00:00
|
|
|
endfunction
|
|
|
|
elseif exists('*GitGutterGetHunkSummary')
|
|
|
|
function! s:get_hunks()
|
|
|
|
if !get(g:, 'gitgutter_enabled', 0)
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
return GitGutterGetHunkSummary()
|
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
function! s:get_hunks()
|
2013-08-21 23:24:56 +00:00
|
|
|
return []
|
2013-08-20 15:43:26 +00:00
|
|
|
endfunction
|
|
|
|
endif
|
2013-08-19 21:13:00 +00:00
|
|
|
endif
|
2013-08-20 15:43:26 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#hunks#get_hunks()
|
|
|
|
call <sid>init()
|
|
|
|
let hunks = s:get_hunks()
|
2013-08-19 22:28:42 +00:00
|
|
|
let string = ''
|
2013-08-21 23:24:56 +00:00
|
|
|
if !empty(hunks)
|
|
|
|
for i in [0, 1, 2]
|
|
|
|
if s:non_zero_only == 0 || hunks[i] > 0
|
|
|
|
let string .= printf('%s%s ', s:hunk_symbols[i], hunks[i])
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
2013-08-19 22:28:42 +00:00
|
|
|
return string
|
2013-08-18 21:02:33 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#hunks#init(ext)
|
2013-08-18 21:18:21 +00:00
|
|
|
let g:airline_section_b .= '%{airline#extensions#hunks#get_hunks()}'
|
2013-08-18 21:02:33 +00:00
|
|
|
endfunction
|
|
|
|
|