mirror of
https://github.com/vim-airline/vim-airline-themes.git
synced 2024-12-13 14:21:09 +08:00
28 lines
810 B
VimL
28 lines
810 B
VimL
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
function! s:check_defined(variable, default)
|
|
if !exists(a:variable)
|
|
let {a:variable} = a:default
|
|
endif
|
|
endfunction
|
|
|
|
call s:check_defined('g:airline#extensions#hunks#non_zero_only', 0)
|
|
call s:check_defined('g:airline#extensions#hunks#hunk_symbols', ['+', '~', '-'])
|
|
|
|
function! airline#extensions#hunks#get_hunks()
|
|
let hunks = GitGutterGetHunkSummary()
|
|
let string = ''
|
|
for i in [0, 1, 2]
|
|
if g:airline#extensions#hunks#non_zero_only == 0 || hunks[i] > 0
|
|
let string .= printf('%s%s ', g:airline#extensions#hunks#hunk_symbols[i], hunks[i])
|
|
endif
|
|
endfor
|
|
return string
|
|
endfunction
|
|
|
|
function! airline#extensions#hunks#init(ext)
|
|
let g:airline_section_b .= '%{airline#extensions#hunks#get_hunks()}'
|
|
endfunction
|
|
|