2021-01-01 20:57:00 +08:00
|
|
|
" MIT License. Copyright (c) 2013-2021 Bailey Ling et al.
|
2020-03-29 23:28:15 +08:00
|
|
|
" Plugin: vim-gitgutter, vim-signify, changesPlugin, quickfixsigns, coc-git
|
2013-08-19 05:02:33 +08:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-24 08:16:30 +08:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2020-04-01 16:43:11 +08:00
|
|
|
if !get(g:, 'loaded_signify', 0)
|
|
|
|
\ && !get(g:, 'loaded_gitgutter', 0)
|
|
|
|
\ && !get(g:, 'loaded_changes', 0)
|
|
|
|
\ && !get(g:, 'loaded_quickfixsigns', 0)
|
|
|
|
\ && !exists("*CocAction")
|
2013-09-10 23:37:25 +08:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-20 11:44:24 +08: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 11:32:14 +08:00
|
|
|
|
2020-04-01 16:43:11 +08:00
|
|
|
function! s:coc_git_enabled() abort
|
2020-04-29 22:57:20 +08:00
|
|
|
if !exists("*CocAction") ||
|
2020-04-29 23:17:58 +08:00
|
|
|
\ !get(g:, 'airline#extensions#hunks#coc_git', 0)
|
2020-04-29 22:57:20 +08:00
|
|
|
" coc-git extension is disabled by default
|
|
|
|
" unless specifically being enabled by the user
|
|
|
|
" (as requested from coc maintainer)
|
2020-04-01 16:43:11 +08:00
|
|
|
return 0
|
|
|
|
endif
|
2020-04-29 22:57:20 +08:00
|
|
|
return 1
|
2020-04-01 16:43:11 +08:00
|
|
|
endfunction
|
|
|
|
|
2020-03-29 23:30:07 +08:00
|
|
|
function! s:get_hunks_signify() abort
|
2013-09-03 08:12:03 +08:00
|
|
|
let hunks = sy#repo#get_stats()
|
|
|
|
if hunks[0] >= 0
|
|
|
|
return hunks
|
|
|
|
endif
|
|
|
|
return []
|
|
|
|
endfunction
|
|
|
|
|
2020-03-29 23:30:07 +08:00
|
|
|
function! s:get_hunks_coc() abort
|
2020-03-29 23:28:15 +08:00
|
|
|
let hunks = get(b:, 'coc_git_status', '')
|
|
|
|
if empty(hunks)
|
|
|
|
return []
|
|
|
|
endif
|
|
|
|
let result = [0, 0, 0]
|
|
|
|
for val in split(hunks)
|
|
|
|
if val[0] is# '+'
|
|
|
|
let result[0] = val[1:] + 0
|
|
|
|
elseif val[0] is# '~'
|
|
|
|
let result[1] = val[1:] + 0
|
|
|
|
elseif val[0] is# '-'
|
|
|
|
let result[2] = val[1:] + 0
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return result
|
|
|
|
endfunction
|
|
|
|
|
2020-03-29 23:30:07 +08:00
|
|
|
function! s:get_hunks_gitgutter() abort
|
2021-11-03 15:24:08 +08:00
|
|
|
let hunks = GitGutterGetHunkSummary()
|
|
|
|
return hunks == [0, 0, 0] ? [] : hunks
|
2013-09-03 08:12:03 +08:00
|
|
|
endfunction
|
|
|
|
|
2020-03-29 23:30:07 +08:00
|
|
|
function! s:get_hunks_changes() abort
|
2014-05-22 13:47:31 +08:00
|
|
|
let hunks = changes#GetStats()
|
2017-06-27 20:14:16 +08:00
|
|
|
return hunks == [0, 0, 0] ? [] : hunks
|
2014-05-22 13:47:31 +08:00
|
|
|
endfunction
|
|
|
|
|
2020-03-29 23:30:07 +08:00
|
|
|
function! s:get_hunks_empty() abort
|
2013-09-03 08:12:03 +08:00
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
2020-03-29 23:30:07 +08:00
|
|
|
function! airline#extensions#hunks#get_raw_hunks() abort
|
2016-07-25 03:15:10 +08:00
|
|
|
if !exists('b:source_func') || get(b:, 'source_func', '') is# 's:get_hunks_empty'
|
2016-01-15 20:05:01 +08:00
|
|
|
if get(g:, 'loaded_signify') && sy#buffer_is_active()
|
|
|
|
let b:source_func = 's:get_hunks_signify'
|
2013-08-20 23:43:26 +08:00
|
|
|
elseif exists('*GitGutterGetHunkSummary')
|
2016-01-15 20:05:01 +08:00
|
|
|
let b:source_func = 's:get_hunks_gitgutter'
|
2014-05-22 13:47:31 +08:00
|
|
|
elseif exists('*changes#GetStats')
|
2016-01-15 20:05:01 +08:00
|
|
|
let b:source_func = 's:get_hunks_changes'
|
2015-04-17 02:26:42 +08:00
|
|
|
elseif exists('*quickfixsigns#vcsdiff#GetHunkSummary')
|
2016-01-15 20:05:01 +08:00
|
|
|
let b:source_func = 'quickfixsigns#vcsdiff#GetHunkSummary'
|
2020-04-01 16:43:11 +08:00
|
|
|
elseif s:coc_git_enabled()
|
2020-03-29 23:28:15 +08:00
|
|
|
let b:source_func = 's:get_hunks_coc'
|
2013-08-20 23:43:26 +08:00
|
|
|
else
|
2016-01-15 20:05:01 +08:00
|
|
|
let b:source_func = 's:get_hunks_empty'
|
2013-08-20 23:43:26 +08:00
|
|
|
endif
|
2013-08-20 05:13:00 +08:00
|
|
|
endif
|
2016-01-15 20:05:01 +08:00
|
|
|
return {b:source_func}()
|
2013-08-20 23:43:26 +08:00
|
|
|
endfunction
|
|
|
|
|
2020-03-29 23:30:07 +08:00
|
|
|
function! airline#extensions#hunks#get_hunks() abort
|
2013-09-02 22:48:03 +08:00
|
|
|
if !get(w:, 'airline_active', 0)
|
|
|
|
return ''
|
|
|
|
endif
|
2017-07-02 00:11:27 +08:00
|
|
|
" Cache values, so that it isn't called too often
|
2016-07-04 02:44:05 +08:00
|
|
|
if exists("b:airline_hunks") &&
|
2017-06-27 20:14:16 +08:00
|
|
|
\ get(b:, 'airline_changenr', 0) == b:changedtick &&
|
2019-02-04 00:30:55 +08:00
|
|
|
\ airline#util#winwidth() == get(s:, 'airline_winwidth', 0) &&
|
2016-07-25 03:15:10 +08:00
|
|
|
\ get(b:, 'source_func', '') isnot# 's:get_hunks_signify' &&
|
2016-08-25 03:22:14 +08:00
|
|
|
\ get(b:, 'source_func', '') isnot# 's:get_hunks_gitgutter' &&
|
2017-08-14 14:13:19 +08:00
|
|
|
\ get(b:, 'source_func', '') isnot# 's:get_hunks_empty' &&
|
2020-03-30 01:04:39 +08:00
|
|
|
\ get(b:, 'source_func', '') isnot# 's:get_hunks_changes' &&
|
|
|
|
\ get(b:, 'source_func', '') isnot# 's:get_hunks_coc'
|
2016-07-04 02:44:05 +08:00
|
|
|
return b:airline_hunks
|
|
|
|
endif
|
2019-02-20 19:27:58 +08:00
|
|
|
let hunks = airline#extensions#hunks#get_raw_hunks()
|
2013-08-20 06:28:42 +08:00
|
|
|
let string = ''
|
2019-02-20 19:24:22 +08:00
|
|
|
let winwidth = get(airline#parts#get('hunks'), 'minwidth', 100)
|
2013-08-22 07:24:56 +08:00
|
|
|
if !empty(hunks)
|
2020-03-29 23:28:15 +08:00
|
|
|
" hunks should contain [added, changed, deleted]
|
2013-08-22 07:24:56 +08:00
|
|
|
for i in [0, 1, 2]
|
2019-02-20 19:24:22 +08:00
|
|
|
if (s:non_zero_only == 0 && airline#util#winwidth() > winwidth) || hunks[i] > 0
|
2013-08-22 07:24:56 +08:00
|
|
|
let string .= printf('%s%s ', s:hunk_symbols[i], hunks[i])
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
2020-07-14 20:01:04 +08:00
|
|
|
if index(airline#extensions#get_loaded_extensions(), 'branch') == -1 && string[-1:] == ' '
|
|
|
|
" branch extension not loaded, skip trailing whitespace
|
|
|
|
let string = string[0:-2]
|
|
|
|
endif
|
|
|
|
|
2016-07-04 02:44:05 +08:00
|
|
|
let b:airline_hunks = string
|
2017-06-27 20:14:16 +08:00
|
|
|
let b:airline_changenr = b:changedtick
|
2019-02-04 00:30:55 +08:00
|
|
|
let s:airline_winwidth = airline#util#winwidth()
|
2013-08-20 06:28:42 +08:00
|
|
|
return string
|
2013-08-19 05:02:33 +08:00
|
|
|
endfunction
|
|
|
|
|
2020-03-29 23:30:07 +08:00
|
|
|
function! airline#extensions#hunks#init(ext) abort
|
2013-08-31 05:51:10 +08:00
|
|
|
call airline#parts#define_function('hunks', 'airline#extensions#hunks#get_hunks')
|
2013-08-19 05:02:33 +08:00
|
|
|
endfunction
|