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-18 21:02:33 +00:00
|
|
|
function! airline#extensions#hunks#get_hunks()
|
2013-08-19 16:03:10 +00:00
|
|
|
let hunks = GitGutterGetHunkSummary()
|
2013-08-19 22:28:42 +00:00
|
|
|
let string = ''
|
|
|
|
for i in [0, 1, 2]
|
2013-08-20 03:44:24 +00:00
|
|
|
if s:non_zero_only == 0 || hunks[i] > 0
|
|
|
|
let string .= printf('%s%s ', s:hunk_symbols[i], hunks[i])
|
2013-08-19 22:28:42 +00:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
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
|
|
|
|
|