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