2018-01-05 09:37:59 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2018 Bailey Ling et al.
|
2013-08-18 18:34:02 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-24 00:16:30 +00:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2016-11-03 16:26:32 +00:00
|
|
|
let s:has_fugitive = exists('*fugitive#head')
|
|
|
|
let s:has_lawrencium = exists('*lawrencium#statusline')
|
|
|
|
let s:has_vcscommand = get(g:, 'airline#extensions#branch#use_vcscommand', 0) && exists('*VCSCommandGetStatusLine')
|
|
|
|
|
2013-11-07 23:36:59 +00:00
|
|
|
if !s:has_fugitive && !s:has_lawrencium && !s:has_vcscommand
|
2013-09-10 15:37:25 +00:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2016-10-30 08:48:24 +00:00
|
|
|
" s:vcs_config contains static configuration of VCSes and their status relative
|
|
|
|
" to the active file.
|
|
|
|
" 'branch' - The name of currently active branch. This field is empty iff it
|
|
|
|
" has not been initialized yet or the current file is not in
|
|
|
|
" an active branch.
|
|
|
|
" 'untracked' - Cache of untracked files represented as a dictionary with files
|
|
|
|
" as keys. A file has a not exists symbol set as its value if it
|
|
|
|
" is untracked. A file is present in this dictionary iff its
|
|
|
|
" status is considered up to date.
|
|
|
|
" 'untracked_mark' - used as regexp to test against the output of 'cmd'
|
|
|
|
let s:vcs_config = {
|
|
|
|
\ 'git': {
|
|
|
|
\ 'exe': 'git',
|
|
|
|
\ 'cmd': 'git status --porcelain -- ',
|
|
|
|
\ 'untracked_mark': '??',
|
2017-06-24 12:03:40 +00:00
|
|
|
\ 'exclude': '\.git',
|
2017-12-26 12:10:41 +00:00
|
|
|
\ 'update_branch': 's:update_git_branch',
|
|
|
|
\ 'display_branch': 's:display_git_branch',
|
2016-10-30 08:48:24 +00:00
|
|
|
\ 'branch': '',
|
|
|
|
\ 'untracked': {},
|
|
|
|
\ },
|
|
|
|
\ 'mercurial': {
|
|
|
|
\ 'exe': 'hg',
|
|
|
|
\ 'cmd': 'hg status -u -- ',
|
|
|
|
\ 'untracked_mark': '?',
|
2017-06-24 12:03:40 +00:00
|
|
|
\ 'exclude': '\.hg',
|
2016-10-30 08:48:24 +00:00
|
|
|
\ 'update_branch': 's:update_hg_branch',
|
2017-12-26 12:10:41 +00:00
|
|
|
\ 'display_branch': 's:display_hg_branch',
|
2016-10-30 08:48:24 +00:00
|
|
|
\ 'branch': '',
|
|
|
|
\ 'untracked': {},
|
|
|
|
\ },
|
|
|
|
\}
|
|
|
|
|
|
|
|
" Initializes b:buffer_vcs_config. b:buffer_vcs_config caches the branch and
|
|
|
|
" untracked status of the file in the buffer. Caching those fields is necessary,
|
|
|
|
" because s:vcs_config may be updated asynchronously and s:vcs_config fields may
|
|
|
|
" be invalid during those updates. b:buffer_vcs_config fields are updated
|
|
|
|
" whenever corresponding fields in s:vcs_config are updated or an inconsistency
|
|
|
|
" is detected during update_* operation.
|
|
|
|
"
|
|
|
|
" b:airline_head caches the head string it is empty iff it needs to be
|
|
|
|
" recalculated. b:airline_head is recalculated based on b:buffer_vcs_config.
|
|
|
|
function! s:init_buffer()
|
|
|
|
let b:buffer_vcs_config = {}
|
|
|
|
for vcs in keys(s:vcs_config)
|
|
|
|
let b:buffer_vcs_config[vcs] = {
|
|
|
|
\ 'branch': '',
|
|
|
|
\ 'untracked': '',
|
|
|
|
\ }
|
|
|
|
endfor
|
|
|
|
unlet! b:airline_head
|
|
|
|
endfunction
|
2016-02-02 21:45:47 +00:00
|
|
|
|
2015-02-28 03:04:13 +00:00
|
|
|
let s:head_format = get(g:, 'airline#extensions#branch#format', 0)
|
|
|
|
if s:head_format == 1
|
|
|
|
function! s:format_name(name)
|
|
|
|
return fnamemodify(a:name, ':t')
|
|
|
|
endfunction
|
2015-11-19 10:03:54 +00:00
|
|
|
elseif s:head_format == 2
|
|
|
|
function! s:format_name(name)
|
|
|
|
return pathshorten(a:name)
|
|
|
|
endfunction
|
2015-02-28 03:04:13 +00:00
|
|
|
elseif type(s:head_format) == type('')
|
|
|
|
function! s:format_name(name)
|
|
|
|
return call(s:head_format, [a:name])
|
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
function! s:format_name(name)
|
|
|
|
return a:name
|
|
|
|
endfunction
|
|
|
|
endif
|
|
|
|
|
2017-11-22 17:54:29 +00:00
|
|
|
|
|
|
|
" Fugitive special revisions. call '0' "staging" ?
|
2017-12-23 14:05:59 +00:00
|
|
|
let s:names = {'0': 'index', '1': 'orig', '2':'fetch', '3':'merge'}
|
2017-11-22 21:41:00 +00:00
|
|
|
let s:sha1size = get(g:, 'airline#extensions#branch#sha1_len', 7)
|
2016-10-30 08:48:24 +00:00
|
|
|
|
2017-11-22 18:12:29 +00:00
|
|
|
function! s:update_git_branch()
|
2016-01-29 12:11:14 +00:00
|
|
|
if !s:has_fugitive
|
2016-10-30 08:48:24 +00:00
|
|
|
let s:vcs_config['git'].branch = ''
|
|
|
|
return
|
2014-04-03 00:54:43 +00:00
|
|
|
endif
|
|
|
|
|
2017-12-26 12:10:41 +00:00
|
|
|
let s:vcs_config['git'].branch = fugitive#head(s:sha1size)
|
2018-01-05 07:12:10 +00:00
|
|
|
if s:vcs_config['git'].branch is# 'master' && winwidth(0) < 81
|
|
|
|
" Shorten default a bit
|
|
|
|
let s:vcs_config['git'].branch='mas'
|
|
|
|
endif
|
2017-12-26 12:10:41 +00:00
|
|
|
endfunction
|
2014-04-03 00:54:43 +00:00
|
|
|
|
2017-12-26 12:10:41 +00:00
|
|
|
function! s:display_git_branch()
|
|
|
|
let name = b:buffer_vcs_config['git'].branch
|
2017-11-22 17:54:29 +00:00
|
|
|
try
|
|
|
|
let commit = fugitive#buffer().commit()
|
|
|
|
|
|
|
|
if has_key(s:names, commit)
|
|
|
|
let name = get(s:names, commit)."(".name.")"
|
|
|
|
elseif !empty(commit)
|
|
|
|
let ref = fugitive#repo().git_chomp('describe', '--all', '--exact-match', commit)
|
|
|
|
if ref !~ "^fatal: no tag exactly matches"
|
|
|
|
let name = s:format_name(substitute(ref, '\v\C^%(heads/|remotes/|tags/)=','',''))."(".name.")"
|
|
|
|
else
|
2018-03-14 20:33:25 +00:00
|
|
|
let name = matchstr(commit, '.\{'.s:sha1size.'}')."(".name.")"
|
2017-11-22 17:54:29 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
catch
|
|
|
|
endtry
|
|
|
|
|
2017-12-26 12:10:41 +00:00
|
|
|
return name
|
2014-04-03 00:54:43 +00:00
|
|
|
endfunction
|
|
|
|
|
2017-11-22 18:12:29 +00:00
|
|
|
function! s:update_hg_branch()
|
2016-01-29 12:11:14 +00:00
|
|
|
if s:has_lawrencium
|
2017-08-22 21:21:19 +00:00
|
|
|
let cmd='LC_ALL=C hg qtop'
|
2016-10-20 20:23:01 +00:00
|
|
|
let stl=lawrencium#statusline()
|
2017-09-22 19:37:28 +00:00
|
|
|
let file=expand('%:p')
|
2017-08-22 21:21:19 +00:00
|
|
|
if !empty(stl) && get(b:, 'airline_do_mq_check', 1)
|
2017-08-23 16:10:59 +00:00
|
|
|
if g:airline#init#vim_async
|
2017-09-22 19:37:28 +00:00
|
|
|
call airline#async#get_mq_async(cmd, file)
|
2017-08-22 21:21:19 +00:00
|
|
|
elseif has("nvim")
|
2017-09-22 19:37:28 +00:00
|
|
|
call airline#async#nvim_get_mq_async(cmd, file)
|
2017-08-22 21:21:19 +00:00
|
|
|
else
|
2017-09-14 09:43:53 +00:00
|
|
|
" remove \n at the end of the command
|
|
|
|
let output=system(cmd)[0:-2]
|
2017-09-22 19:37:28 +00:00
|
|
|
call airline#async#mq_output(output, file)
|
2017-08-22 21:21:19 +00:00
|
|
|
endif
|
2016-10-20 20:23:01 +00:00
|
|
|
endif
|
2017-08-22 21:21:19 +00:00
|
|
|
" do not do mq check anymore
|
|
|
|
let b:airline_do_mq_check = 0
|
|
|
|
if exists("b:mq") && !empty(b:mq)
|
2016-10-20 20:23:01 +00:00
|
|
|
if stl is# 'default'
|
|
|
|
" Shorten default a bit
|
|
|
|
let stl='def'
|
|
|
|
endif
|
2017-08-22 21:21:19 +00:00
|
|
|
let stl.=' ['.b:mq.']'
|
2016-10-20 20:23:01 +00:00
|
|
|
endif
|
2016-11-04 01:54:39 +00:00
|
|
|
let s:vcs_config['mercurial'].branch = stl
|
2016-10-30 08:48:24 +00:00
|
|
|
else
|
|
|
|
let s:vcs_config['mercurial'].branch = ''
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2017-12-26 12:10:41 +00:00
|
|
|
function! s:display_hg_branch()
|
|
|
|
return b:buffer_vcs_config['mercurial'].branch
|
|
|
|
endfunction
|
|
|
|
|
2016-10-30 08:48:24 +00:00
|
|
|
function! s:update_branch()
|
|
|
|
for vcs in keys(s:vcs_config)
|
2017-11-22 18:12:29 +00:00
|
|
|
call {s:vcs_config[vcs].update_branch}()
|
2016-10-30 08:48:24 +00:00
|
|
|
if b:buffer_vcs_config[vcs].branch != s:vcs_config[vcs].branch
|
|
|
|
let b:buffer_vcs_config[vcs].branch = s:vcs_config[vcs].branch
|
|
|
|
unlet! b:airline_head
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
2017-08-22 21:21:19 +00:00
|
|
|
function! airline#extensions#branch#update_untracked_config(file, vcs)
|
2016-10-30 08:48:24 +00:00
|
|
|
if !has_key(s:vcs_config[a:vcs].untracked, a:file)
|
|
|
|
return
|
|
|
|
elseif s:vcs_config[a:vcs].untracked[a:file] != b:buffer_vcs_config[a:vcs].untracked
|
|
|
|
let b:buffer_vcs_config[a:vcs].untracked = s:vcs_config[a:vcs].untracked[a:file]
|
|
|
|
unlet! b:airline_head
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:update_untracked()
|
2017-08-22 21:21:19 +00:00
|
|
|
let file = expand("%:p")
|
|
|
|
if empty(file) || isdirectory(file)
|
2016-10-30 08:48:24 +00:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2017-08-22 21:21:19 +00:00
|
|
|
let needs_update = 1
|
2016-10-30 08:48:24 +00:00
|
|
|
for vcs in keys(s:vcs_config)
|
2017-08-22 21:21:19 +00:00
|
|
|
if file =~ s:vcs_config[vcs].exclude
|
2017-06-24 12:03:40 +00:00
|
|
|
" Skip check for files that live in the exclude directory
|
2017-08-22 21:21:19 +00:00
|
|
|
let needs_update = 0
|
2017-06-24 12:03:40 +00:00
|
|
|
endif
|
2017-08-22 21:21:19 +00:00
|
|
|
if has_key(s:vcs_config[vcs].untracked, file)
|
|
|
|
let needs_update = 0
|
|
|
|
call airline#extensions#branch#update_untracked_config(file, vcs)
|
2016-10-30 08:48:24 +00:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
2017-08-22 21:21:19 +00:00
|
|
|
if !needs_update
|
2016-10-30 08:48:24 +00:00
|
|
|
return
|
2016-01-29 12:11:14 +00:00
|
|
|
endif
|
2016-10-30 08:48:24 +00:00
|
|
|
|
|
|
|
for vcs in keys(s:vcs_config)
|
2017-08-22 21:21:19 +00:00
|
|
|
let config = s:vcs_config[vcs]
|
2017-08-23 16:10:59 +00:00
|
|
|
if g:airline#init#vim_async
|
2016-10-30 08:48:24 +00:00
|
|
|
" Note that asynchronous update updates s:vcs_config only, and only
|
|
|
|
" s:update_untracked updates b:buffer_vcs_config. If s:vcs_config is
|
|
|
|
" invalidated again before s:update_untracked is called, then we lose the
|
|
|
|
" result of the previous call, i.e. the head string is not updated. It
|
|
|
|
" doesn't happen often in practice, so we let it be.
|
2017-08-22 21:21:19 +00:00
|
|
|
call airline#async#vim_vcs_untracked(config, file)
|
2016-10-30 08:48:24 +00:00
|
|
|
else
|
2017-08-22 21:21:19 +00:00
|
|
|
" nvim async or vim without job-feature
|
|
|
|
call airline#async#nvim_vcs_untracked(config, file, vcs)
|
2016-10-30 08:48:24 +00:00
|
|
|
endif
|
|
|
|
endfor
|
2016-01-29 12:11:14 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-12-03 05:32:54 +00:00
|
|
|
function! airline#extensions#branch#head()
|
2016-10-30 08:48:24 +00:00
|
|
|
if !exists('b:buffer_vcs_config')
|
|
|
|
call s:init_buffer()
|
|
|
|
endif
|
|
|
|
|
|
|
|
call s:update_branch()
|
|
|
|
call s:update_untracked()
|
|
|
|
|
2014-04-03 00:54:43 +00:00
|
|
|
if exists('b:airline_head') && !empty(b:airline_head)
|
2014-03-24 18:01:31 +00:00
|
|
|
return b:airline_head
|
|
|
|
endif
|
|
|
|
|
|
|
|
let b:airline_head = ''
|
2017-08-22 21:21:19 +00:00
|
|
|
let vcs_priority = get(g:, "airline#extensions#branch#vcs_priority", ["git", "mercurial"])
|
2013-08-18 17:22:35 +00:00
|
|
|
|
2017-12-26 12:10:41 +00:00
|
|
|
let heads = []
|
2017-08-22 21:21:19 +00:00
|
|
|
for vcs in vcs_priority
|
2016-10-30 08:48:24 +00:00
|
|
|
if !empty(b:buffer_vcs_config[vcs].branch)
|
2017-12-26 12:10:41 +00:00
|
|
|
let heads += [vcs]
|
2016-10-23 14:33:31 +00:00
|
|
|
endif
|
|
|
|
endfor
|
2013-08-18 18:34:02 +00:00
|
|
|
|
2017-12-26 12:10:41 +00:00
|
|
|
for vcs in heads
|
2016-10-23 14:33:31 +00:00
|
|
|
if !empty(b:airline_head)
|
|
|
|
let b:airline_head .= ' | '
|
2016-10-23 10:05:46 +00:00
|
|
|
endif
|
2017-12-26 12:10:41 +00:00
|
|
|
if len(heads) > 1
|
|
|
|
let b:airline_head .= s:vcs_config[vcs].exe .':'
|
|
|
|
endif
|
|
|
|
let b:airline_head .= s:format_name({s:vcs_config[vcs].display_branch}())
|
2016-10-30 08:48:24 +00:00
|
|
|
let b:airline_head .= b:buffer_vcs_config[vcs].untracked
|
2016-11-03 16:41:55 +00:00
|
|
|
endfor
|
2013-08-18 17:22:35 +00:00
|
|
|
|
2017-08-22 21:21:19 +00:00
|
|
|
if empty(heads)
|
2013-11-07 23:36:59 +00:00
|
|
|
if s:has_vcscommand
|
|
|
|
call VCSCommandEnableBufferSetup()
|
|
|
|
if exists('b:VCSCommandBufferInfo')
|
2016-01-29 12:11:14 +00:00
|
|
|
let b:airline_head = s:format_name(get(b:VCSCommandBufferInfo, 0, ''))
|
2013-11-07 23:36:59 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-05-21 17:41:53 +00:00
|
|
|
if exists("g:airline#extensions#branch#displayed_head_limit")
|
|
|
|
let w:displayed_head_limit = g:airline#extensions#branch#displayed_head_limit
|
|
|
|
if len(b:airline_head) > w:displayed_head_limit - 1
|
2016-02-25 10:30:02 +00:00
|
|
|
let b:airline_head = b:airline_head[0:(w:displayed_head_limit - 1)].(&encoding ==? 'utf-8' ? '…' : '.')
|
2014-05-21 17:41:53 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-07-03 18:44:05 +00:00
|
|
|
let minwidth = empty(get(b:, 'airline_hunks', '')) ? 14 : 7
|
|
|
|
let b:airline_head = airline#util#shorten(b:airline_head, 120, minwidth)
|
2014-03-24 18:01:31 +00:00
|
|
|
return b:airline_head
|
2013-12-03 05:32:54 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#branch#get_head()
|
|
|
|
let head = airline#extensions#branch#head()
|
2016-01-28 14:54:14 +00:00
|
|
|
let empty_message = get(g:, 'airline#extensions#branch#empty_message', '')
|
2014-01-16 04:31:07 +00:00
|
|
|
let symbol = get(g:, 'airline#extensions#branch#symbol', g:airline_symbols.branch)
|
2013-12-03 05:32:54 +00:00
|
|
|
return empty(head)
|
2014-01-16 04:31:07 +00:00
|
|
|
\ ? empty_message
|
|
|
|
\ : printf('%s%s', empty(symbol) ? '' : symbol.(g:airline_symbols.space), head)
|
2013-08-06 04:42:59 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-09-28 19:20:37 +00:00
|
|
|
function! s:reset_untracked_cache(shellcmdpost)
|
2016-10-09 13:47:23 +00:00
|
|
|
" shellcmdpost - whether function was called as a result of ShellCmdPost hook
|
2017-08-23 16:10:59 +00:00
|
|
|
if !g:airline#init#vim_async && !has('nvim')
|
2016-09-28 19:20:37 +00:00
|
|
|
if a:shellcmdpost
|
2016-10-09 13:47:23 +00:00
|
|
|
" Clear cache only if there was no error or the script uses an
|
|
|
|
" asynchronous interface. Otherwise, cache clearing would overwrite
|
|
|
|
" v:shell_error with a system() call inside get_*_untracked.
|
2016-09-28 19:20:37 +00:00
|
|
|
if v:shell_error
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2016-10-30 08:48:24 +00:00
|
|
|
|
2017-08-22 21:21:19 +00:00
|
|
|
let file = expand("%:p")
|
2016-10-30 08:48:24 +00:00
|
|
|
for vcs in keys(s:vcs_config)
|
|
|
|
" Dump the value of the cache for the current file. Partially mitigates the
|
|
|
|
" issue of cache invalidation happening before a call to
|
|
|
|
" s:update_untracked()
|
2017-08-22 21:21:19 +00:00
|
|
|
call airline#extensions#branch#update_untracked_config(file, vcs)
|
2016-10-30 08:48:24 +00:00
|
|
|
let s:vcs_config[vcs].untracked = {}
|
2016-10-23 14:33:31 +00:00
|
|
|
endfor
|
2016-02-02 21:45:47 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-08-06 03:07:01 +00:00
|
|
|
function! airline#extensions#branch#init(ext)
|
2013-08-30 21:51:10 +00:00
|
|
|
call airline#parts#define_function('branch', 'airline#extensions#branch#get_head')
|
2013-09-08 14:03:49 +00:00
|
|
|
|
2017-11-22 18:12:29 +00:00
|
|
|
autocmd ShellCmdPost,CmdwinLeave * unlet! b:airline_head b:airline_do_mq_check
|
|
|
|
autocmd User AirlineBeforeRefresh unlet! b:airline_head b:airline_do_mq_check
|
2016-09-28 19:20:37 +00:00
|
|
|
autocmd BufWritePost * call s:reset_untracked_cache(0)
|
|
|
|
autocmd ShellCmdPost * call s:reset_untracked_cache(1)
|
2013-08-06 03:07:01 +00:00
|
|
|
endfunction
|