2013-08-18 21:02:33 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
function! airline#extensions#hunks#get_hunks()
|
2013-08-19 16:03:10 +00:00
|
|
|
let hunks = GitGutterGetHunkSummary()
|
|
|
|
return printf('+%s ~%s -%s ', hunks[0], hunks[1], hunks[2])
|
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
|
|
|
|
|