mirror of
https://github.com/vim-airline/vim-airline-themes
synced 2025-01-26 15:13:05 +00:00
simplify, no globals unless necessary.
This commit is contained in:
parent
e65aefac00
commit
fa62cbb5f6
@ -1,21 +1,15 @@
|
|||||||
" MIT License. Copyright (c) 2013 Bailey Ling.
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
||||||
" vim: et ts=2 sts=2 sw=2
|
" vim: et ts=2 sts=2 sw=2
|
||||||
|
|
||||||
function! s:check_defined(variable, default)
|
let s:non_zero_only = get(g:, 'airline#extensions#hunks#non_zero_only', 0)
|
||||||
if !exists(a:variable)
|
let s:hunk_symbols = get(g:, 'airline#extensions#hunks#hunk_symbols', ['+', '~', '-'])
|
||||||
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()
|
function! airline#extensions#hunks#get_hunks()
|
||||||
let hunks = GitGutterGetHunkSummary()
|
let hunks = GitGutterGetHunkSummary()
|
||||||
let string = ''
|
let string = ''
|
||||||
for i in [0, 1, 2]
|
for i in [0, 1, 2]
|
||||||
if g:airline#extensions#hunks#non_zero_only == 0 || hunks[i] > 0
|
if s:non_zero_only == 0 || hunks[i] > 0
|
||||||
let string .= printf('%s%s ', g:airline#extensions#hunks#hunk_symbols[i], hunks[i])
|
let string .= printf('%s%s ', s:hunk_symbols[i], hunks[i])
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
return string
|
return string
|
||||||
|
Loading…
Reference in New Issue
Block a user