2016-10-23 22:33:31 +08:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling et al.
|
2013-08-19 02:34:02 +08:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-24 08:16:30 +08:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2013-11-08 07:36:59 +08:00
|
|
|
if !s:has_fugitive && !s:has_lawrencium && !s:has_vcscommand
|
2013-09-10 23:37:25 +08:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2016-10-23 22:33:31 +08: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')
|
|
|
|
let s:has_async = airline#util#async
|
2016-02-03 05:45:47 +08:00
|
|
|
let s:git_dirs = {}
|
|
|
|
|
2015-02-28 11:04:13 +08: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 18:03:54 +08:00
|
|
|
elseif s:head_format == 2
|
|
|
|
function! s:format_name(name)
|
|
|
|
return pathshorten(a:name)
|
|
|
|
endfunction
|
2015-02-28 11:04:13 +08: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
|
|
|
|
|
2014-04-03 08:54:43 +08:00
|
|
|
function! s:get_git_branch(path)
|
2016-01-29 20:11:14 +08:00
|
|
|
if !s:has_fugitive
|
|
|
|
return ''
|
2014-04-03 08:54:43 +08:00
|
|
|
endif
|
|
|
|
|
2016-01-29 20:11:14 +08:00
|
|
|
let name = fugitive#head(7)
|
|
|
|
if empty(name)
|
|
|
|
if has_key(s:git_dirs, a:path)
|
|
|
|
return s:git_dirs[a:path]
|
|
|
|
endif
|
|
|
|
|
|
|
|
let dir = fugitive#extract_git_dir(a:path)
|
|
|
|
if empty(dir)
|
2014-04-03 08:54:43 +08:00
|
|
|
let name = ''
|
2016-01-29 20:11:14 +08:00
|
|
|
else
|
|
|
|
try
|
|
|
|
let line = join(readfile(dir . '/HEAD'))
|
|
|
|
if strpart(line, 0, 16) == 'ref: refs/heads/'
|
|
|
|
let name = strpart(line, 16)
|
|
|
|
else
|
|
|
|
" raw commit hash
|
|
|
|
let name = strpart(line, 0, 7)
|
|
|
|
endif
|
|
|
|
catch
|
|
|
|
let name = ''
|
|
|
|
endtry
|
|
|
|
endif
|
2014-04-03 08:54:43 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
let s:git_dirs[a:path] = name
|
|
|
|
return name
|
|
|
|
endfunction
|
|
|
|
|
2016-10-23 22:33:31 +08:00
|
|
|
" 'untracked' - dictionary with files as keys. A file has a not exists symbol
|
|
|
|
" set as its value if it is untracked.
|
|
|
|
" untracked_mark is taken as regex!
|
|
|
|
let s:vcs_config = {
|
|
|
|
\ 'git': {
|
|
|
|
\ 'exe': 'git',
|
|
|
|
\ 'cmd': 'git status --porcelain -- ',
|
|
|
|
\ 'untracked_mark': '??',
|
|
|
|
\ 'get_branch': 's:get_git_branch',
|
|
|
|
\ 'untracked': {},
|
|
|
|
\ },
|
|
|
|
\ 'mercurial': {
|
|
|
|
\ 'exe': 'hg',
|
|
|
|
\ 'cmd': 'hg status -u -- ',
|
|
|
|
\ 'untracked_mark': '?',
|
|
|
|
\ 'get_branch': 's:get_hg_branch',
|
|
|
|
\ 'untracked': {},
|
|
|
|
\ },
|
|
|
|
\}
|
|
|
|
|
|
|
|
function! s:get_untracked(file, config)
|
|
|
|
" Assigns the notexists symbol to 'file's entry in the untracked cache if
|
|
|
|
" 'file' is indeed untracked by current VCS.
|
|
|
|
" 'config' is this script's configuration of the VCS.
|
|
|
|
if empty(a:file) || !executable(a:config['exe'])
|
2016-09-29 00:03:13 +08:00
|
|
|
return
|
2016-02-03 05:45:47 +08:00
|
|
|
endif
|
|
|
|
|
2016-10-23 22:33:31 +08:00
|
|
|
if s:has_async
|
|
|
|
call s:get_vcs_untracked_async(a:config, a:file)
|
|
|
|
else
|
|
|
|
let output = system(a:config['cmd'] . shellescape(a:file))
|
|
|
|
if output =~? ('^' . a:config['untracked_mark'])
|
|
|
|
let a:config['untracked'][a:file] = get(g:, 'airline#extensions#branch#notexists', g:airline_symbols.notexists)
|
2016-02-03 05:45:47 +08:00
|
|
|
else
|
2016-10-23 22:33:31 +08:00
|
|
|
let a:config['untracked'][a:file] = ''
|
2016-02-03 05:45:47 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2016-10-23 22:33:31 +08:00
|
|
|
function! s:get_hg_branch(path)
|
2016-01-29 20:11:14 +08:00
|
|
|
if s:has_lawrencium
|
2016-10-21 04:23:01 +08:00
|
|
|
let stl=lawrencium#statusline()
|
2016-11-02 23:43:47 +08:00
|
|
|
if !empty(stl) && s:has_async
|
2016-10-21 04:23:01 +08:00
|
|
|
call s:get_mq_async('hg qtop', expand('%:p'))
|
|
|
|
endif
|
|
|
|
if exists("s:mq") && !empty(s:mq)
|
|
|
|
if stl is# 'default'
|
|
|
|
" Shorten default a bit
|
|
|
|
let stl='def'
|
|
|
|
endif
|
|
|
|
let stl.=' ['.s:mq.']'
|
|
|
|
endif
|
|
|
|
return stl
|
2016-01-29 20:11:14 +08:00
|
|
|
endif
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
2016-09-29 00:03:13 +08:00
|
|
|
if s:has_async
|
|
|
|
let s:jobs = {}
|
|
|
|
|
|
|
|
function! s:on_stdout(channel, msg) dict abort
|
|
|
|
let self.buf .= a:msg
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:on_exit(channel) dict abort
|
2016-10-23 22:33:31 +08:00
|
|
|
if self.buf =~? ('^' . self.config['untracked_mark'])
|
|
|
|
let self.config['untracked'][self.file] = get(g:, 'airline#extensions#branch#notexists', g:airline_symbols.notexists)
|
2016-09-29 03:59:16 +08:00
|
|
|
else
|
2016-10-23 22:33:31 +08:00
|
|
|
let self.config['untracked'][self.file] = ''
|
2016-09-29 00:03:13 +08:00
|
|
|
endif
|
2016-10-19 10:23:07 +08:00
|
|
|
if has_key(s:jobs, self.file)
|
|
|
|
call remove(s:jobs, self.file)
|
|
|
|
endif
|
2016-09-29 00:03:13 +08:00
|
|
|
endfunction
|
|
|
|
|
2016-10-23 22:33:31 +08:00
|
|
|
function! s:get_vcs_untracked_async(config, file)
|
2016-09-29 03:59:16 +08:00
|
|
|
if g:airline#util#is_windows && &shell =~ 'cmd'
|
2016-10-23 22:33:31 +08:00
|
|
|
let cmd = a:config['cmd'] . shellescape(a:file)
|
2016-09-29 00:03:13 +08:00
|
|
|
else
|
2016-10-23 22:33:31 +08:00
|
|
|
let cmd = ['sh', '-c', a:config['cmd'] . shellescape(a:file)]
|
2016-09-29 00:03:13 +08:00
|
|
|
endif
|
|
|
|
let cmdstring = split(a:cmd)[0]
|
|
|
|
|
2016-10-23 22:33:31 +08:00
|
|
|
let options = {'config': a:config, 'buf': '', 'file': a:file}
|
2016-09-29 00:03:13 +08:00
|
|
|
if has_key(s:jobs, a:file)
|
|
|
|
if job_status(get(s:jobs, a:file)) == 'run'
|
|
|
|
return
|
2016-10-09 21:47:23 +08:00
|
|
|
elseif has_key(s:jobs, a:file)
|
2016-09-29 00:03:13 +08:00
|
|
|
call remove(s:jobs, a:file)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let id = job_start(cmd, {
|
|
|
|
\ 'err_io': 'out',
|
|
|
|
\ 'out_cb': function('s:on_stdout', options),
|
|
|
|
\ 'close_cb': function('s:on_exit', options)})
|
|
|
|
let s:jobs[a:file] = id
|
|
|
|
endfu
|
2016-10-21 04:23:01 +08:00
|
|
|
|
|
|
|
function! s:on_exit_mq(channel) dict abort
|
|
|
|
if !empty(self.buf)
|
|
|
|
if self.buf is# 'no patches applied' ||
|
|
|
|
\ self.buf =~# "unknown command 'qtop'"
|
|
|
|
let self.buf = ''
|
|
|
|
elseif exists("s:mq") && s:mq isnot# self.buf
|
|
|
|
" make sure, statusline is updated
|
|
|
|
unlet! b:airline_head
|
|
|
|
endif
|
|
|
|
let s:mq = self.buf
|
|
|
|
endif
|
|
|
|
if has_key(s:jobs, self.file)
|
|
|
|
call remove(s:jobs, self.file)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:get_mq_async(cmd, file)
|
|
|
|
if g:airline#util#is_windows && &shell =~ 'cmd'
|
|
|
|
let cmd = a:cmd. shellescape(a:file)
|
|
|
|
else
|
|
|
|
let cmd = ['sh', '-c', a:cmd]
|
|
|
|
endif
|
|
|
|
|
|
|
|
let options = {'cmd': a:cmd, 'buf': '', 'file': a:file}
|
|
|
|
if has_key(s:jobs, a:file)
|
|
|
|
if job_status(get(s:jobs, a:file)) == 'run'
|
|
|
|
return
|
|
|
|
elseif has_key(s:jobs, a:file)
|
|
|
|
call remove(s:jobs, a:file)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let id = job_start(cmd, {
|
|
|
|
\ 'err_io': 'out',
|
|
|
|
\ 'out_cb': function('s:on_stdout', options),
|
|
|
|
\ 'close_cb': function('s:on_exit_mq', options)})
|
|
|
|
let s:jobs[a:file] = id
|
|
|
|
endfu
|
2016-09-29 00:03:13 +08:00
|
|
|
endif
|
|
|
|
|
2013-12-03 13:32:54 +08:00
|
|
|
function! airline#extensions#branch#head()
|
2014-04-03 08:54:43 +08:00
|
|
|
if exists('b:airline_head') && !empty(b:airline_head)
|
2014-03-25 02:01:31 +08:00
|
|
|
return b:airline_head
|
|
|
|
endif
|
|
|
|
|
|
|
|
let b:airline_head = ''
|
2016-01-29 20:11:14 +08:00
|
|
|
let l:vcs_priority = get(g:, "airline#extensions#branch#vcs_priority", ["git", "mercurial"])
|
2014-08-16 04:07:18 +08:00
|
|
|
let found_fugitive_head = 0
|
2016-10-23 22:33:31 +08:00
|
|
|
let l:heads = {}
|
2013-08-19 01:22:35 +08:00
|
|
|
|
2016-10-23 22:33:31 +08:00
|
|
|
for vcs in l:vcs_priority
|
|
|
|
let l:path = exists("*fnamemodify") ? fnamemodify(resolve(@%), ":p:h") : expand("%:p:h")
|
|
|
|
let l:head = {s:vcs_config[vcs].get_branch}(l:path)
|
|
|
|
if !empty(l:head)
|
|
|
|
let l:heads[vcs] = l:head
|
|
|
|
endif
|
|
|
|
endfor
|
2013-08-19 02:34:02 +08:00
|
|
|
|
2016-09-29 00:03:13 +08:00
|
|
|
let l:file = expand("%:p")
|
2016-10-23 18:05:46 +08:00
|
|
|
" Do not get untracked flag if we are modifying a directory.
|
|
|
|
let l:is_file_and_not_dir = !isdirectory(l:file)
|
2016-10-23 22:33:31 +08:00
|
|
|
for vcs in keys(l:heads)
|
|
|
|
if !empty(b:airline_head)
|
|
|
|
let b:airline_head .= ' | '
|
2016-10-23 18:05:46 +08:00
|
|
|
endif
|
2016-10-23 22:33:31 +08:00
|
|
|
endfor
|
2013-08-19 01:22:35 +08:00
|
|
|
|
2016-01-29 20:11:14 +08:00
|
|
|
if !empty(l:hg_head)
|
|
|
|
let l:heads.mercurial = (!empty(l:git_head) ? "hg:" : '') . s:format_name(l:hg_head)
|
2016-10-23 18:05:46 +08:00
|
|
|
if l:is_file_and_not_dir
|
|
|
|
call s:get_hg_untracked(l:file)
|
|
|
|
let l:heads.mercurial.= get(s:untracked_hg, l:file, '')
|
|
|
|
endif
|
2013-08-19 01:22:35 +08:00
|
|
|
endif
|
|
|
|
|
2016-01-29 20:11:14 +08:00
|
|
|
if empty(l:heads)
|
2013-11-08 07:36:59 +08:00
|
|
|
if s:has_vcscommand
|
|
|
|
call VCSCommandEnableBufferSetup()
|
|
|
|
if exists('b:VCSCommandBufferInfo')
|
2016-01-29 20:11:14 +08:00
|
|
|
let b:airline_head = s:format_name(get(b:VCSCommandBufferInfo, 0, ''))
|
2013-11-08 07:36:59 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-05-22 01:41:53 +08: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 18:30:02 +08:00
|
|
|
let b:airline_head = b:airline_head[0:(w:displayed_head_limit - 1)].(&encoding ==? 'utf-8' ? '…' : '.')
|
2014-05-22 01:41:53 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-10-23 22:33:31 +08:00
|
|
|
if has_key(l:heads, 'git') && !s:check_in_path()
|
2016-01-29 20:11:14 +08:00
|
|
|
let b:airline_head = ''
|
|
|
|
endif
|
2016-07-04 02:44:05 +08:00
|
|
|
let minwidth = empty(get(b:, 'airline_hunks', '')) ? 14 : 7
|
|
|
|
let b:airline_head = airline#util#shorten(b:airline_head, 120, minwidth)
|
2014-03-25 02:01:31 +08:00
|
|
|
return b:airline_head
|
2013-12-03 13:32:54 +08:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#branch#get_head()
|
|
|
|
let head = airline#extensions#branch#head()
|
2016-01-28 22:54:14 +08:00
|
|
|
let empty_message = get(g:, 'airline#extensions#branch#empty_message', '')
|
2014-01-16 12:31:07 +08:00
|
|
|
let symbol = get(g:, 'airline#extensions#branch#symbol', g:airline_symbols.branch)
|
2013-12-03 13:32:54 +08:00
|
|
|
return empty(head)
|
2014-01-16 12:31:07 +08:00
|
|
|
\ ? empty_message
|
|
|
|
\ : printf('%s%s', empty(symbol) ? '' : symbol.(g:airline_symbols.space), head)
|
2013-08-06 12:42:59 +08:00
|
|
|
endfunction
|
|
|
|
|
2013-09-08 22:03:49 +08:00
|
|
|
function! s:check_in_path()
|
|
|
|
if !exists('b:airline_branch_path')
|
|
|
|
let root = get(b:, 'git_dir', get(b:, 'mercurial_dir', ''))
|
2014-02-26 05:36:36 +08:00
|
|
|
let bufferpath = resolve(fnamemodify(expand('%'), ':p'))
|
2013-10-02 09:36:24 +08:00
|
|
|
|
2013-10-02 22:18:33 +08:00
|
|
|
if !filereadable(root) "not a file
|
|
|
|
" if .git is a directory, it's the old submodule format
|
|
|
|
if match(root, '\.git$') >= 0
|
|
|
|
let root = expand(fnamemodify(root, ':h'))
|
|
|
|
else
|
|
|
|
" else it's the newer format, and we need to guesstimate
|
|
|
|
let pattern = '\.git\(\\\|\/\)modules\(\\\|\/\)'
|
|
|
|
if match(root, pattern) >= 0
|
|
|
|
let root = substitute(root, pattern, '', '')
|
|
|
|
endif
|
2015-01-04 08:38:17 +08:00
|
|
|
endif
|
2013-10-02 09:36:24 +08:00
|
|
|
endif
|
2013-10-02 22:18:33 +08:00
|
|
|
|
2013-09-08 22:03:49 +08:00
|
|
|
let b:airline_file_in_root = stridx(bufferpath, root) > -1
|
|
|
|
endif
|
|
|
|
return b:airline_file_in_root
|
|
|
|
endfunction
|
|
|
|
|
2016-09-29 03:20:37 +08:00
|
|
|
function! s:reset_untracked_cache(shellcmdpost)
|
2016-10-09 21:47:23 +08:00
|
|
|
" shellcmdpost - whether function was called as a result of ShellCmdPost hook
|
2016-09-29 03:20:37 +08:00
|
|
|
if !s:has_async
|
|
|
|
if a:shellcmdpost
|
2016-10-09 21:47:23 +08: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-29 03:20:37 +08:00
|
|
|
if v:shell_error
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2016-10-23 22:33:31 +08:00
|
|
|
for vcs in ["git", "mercurial"]
|
|
|
|
let s:vcs_config[vcs]['untracked'] = {}
|
|
|
|
endfor
|
2016-02-03 05:45:47 +08:00
|
|
|
endfunction
|
|
|
|
|
2013-08-06 11:07:01 +08:00
|
|
|
function! airline#extensions#branch#init(ext)
|
2013-08-31 05:51:10 +08:00
|
|
|
call airline#parts#define_function('branch', 'airline#extensions#branch#get_head')
|
2013-09-08 22:03:49 +08:00
|
|
|
|
|
|
|
autocmd BufReadPost * unlet! b:airline_file_in_root
|
2014-04-03 08:54:43 +08:00
|
|
|
autocmd CursorHold,ShellCmdPost,CmdwinLeave * unlet! b:airline_head
|
2016-01-29 22:29:40 +08:00
|
|
|
autocmd User AirlineBeforeRefresh unlet! b:airline_head
|
2016-09-29 03:20:37 +08:00
|
|
|
autocmd BufWritePost * call s:reset_untracked_cache(0)
|
|
|
|
autocmd ShellCmdPost * call s:reset_untracked_cache(1)
|
2013-08-06 11:07:01 +08:00
|
|
|
endfunction
|