mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-23 01:50:10 +08:00
Use extension local variables, and expose hunk_symbols to user
This commit is contained in:
parent
4d9a0e257f
commit
a5f084dc4e
|
@ -1,13 +1,21 @@
|
||||||
" 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)
|
||||||
|
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()
|
function! airline#extensions#hunks#get_hunks()
|
||||||
let hunks = GitGutterGetHunkSummary()
|
let hunks = GitGutterGetHunkSummary()
|
||||||
let hunk_symbol = ['+', '~', '-']
|
|
||||||
let string = ''
|
let string = ''
|
||||||
for i in [0, 1, 2]
|
for i in [0, 1, 2]
|
||||||
if g:airline_hunk_non_zero_only == 0 || hunks[i] > 0
|
if g:airline#extensions#hunks#non_zero_only == 0 || hunks[i] > 0
|
||||||
let string .= printf('%s%s ', hunk_symbol[i], hunks[i])
|
let string .= printf('%s%s ', g:airline#extensions#hunks#hunk_symbols[i], hunks[i])
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
return string
|
return string
|
||||||
|
|
|
@ -211,9 +211,13 @@ vim-gitgutter <https://github.com/airblade/vim-gitgutter>
|
||||||
|
|
||||||
* enable/disable detecting changed hunks under source control. >
|
* enable/disable detecting changed hunks under source control. >
|
||||||
let g:airline_enable_hunks = 1
|
let g:airline_enable_hunks = 1
|
||||||
|
<
|
||||||
* enable/disable showing only non-zero hunks.
|
* enable/disable showing only non-zero hunks. >
|
||||||
let g:airline_hunk_non_zero_only = 0
|
let g:airline#extensions#hunks#non_zero_only = 0
|
||||||
|
<
|
||||||
|
* set hunk count symbols. >
|
||||||
|
let g:airline#extensions#hunks#hunk_symbols = ['+', '~', '-']
|
||||||
|
<
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
FUNCREFS *airline-funcrefs*
|
FUNCREFS *airline-funcrefs*
|
||||||
|
|
|
@ -25,7 +25,6 @@ call s:check_defined('g:airline_detect_iminsert', 0)
|
||||||
call s:check_defined('g:airline_detect_modified', 1)
|
call s:check_defined('g:airline_detect_modified', 1)
|
||||||
call s:check_defined('g:airline_detect_paste', 1)
|
call s:check_defined('g:airline_detect_paste', 1)
|
||||||
call s:check_defined('g:airline_detect_whitespace', 1)
|
call s:check_defined('g:airline_detect_whitespace', 1)
|
||||||
call s:check_defined('g:airline_hunk_non_zero_only', 0)
|
|
||||||
call s:check_defined('g:airline_branch_empty_message', '')
|
call s:check_defined('g:airline_branch_empty_message', '')
|
||||||
call s:check_defined('g:airline_branch_prefix', exists('g:airline_powerline_fonts')?' ':'')
|
call s:check_defined('g:airline_branch_prefix', exists('g:airline_powerline_fonts')?' ':'')
|
||||||
call s:check_defined('g:airline_readonly_symbol', exists('g:airline_powerline_fonts')?'':'RO')
|
call s:check_defined('g:airline_readonly_symbol', exists('g:airline_powerline_fonts')?'':'RO')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user