Merge pull request #1334 from chrisbra/worktrees

Add Worktrees support
This commit is contained in:
Christian Brabandt 2016-12-06 21:17:51 +01:00 committed by GitHub
commit 4c39344cc1
1 changed files with 8 additions and 2 deletions

View File

@ -341,7 +341,7 @@ function! airline#extensions#branch#get_head()
endfunction
function! s:check_in_path()
if !exists('b:airline_branch_path')
if !exists('b:airline_file_in_root')
let root = get(b:, 'git_dir', get(b:, 'mercurial_dir', ''))
let bufferpath = resolve(fnamemodify(expand('%'), ':p'))
@ -351,7 +351,13 @@ function! s:check_in_path()
let root = expand(fnamemodify(root, ':h'))
else
" else it's the newer format, and we need to guesstimate
let pattern = '\.git\(\\\|\/\)modules\(\\\|\/\)'
" 1) check for worktrees
if match(root, 'worktrees') > -1
" worktree can be anywhere, so simply assume true here
return 1
endif
" 2) check for submodules
let pattern = '\.git[\\/]\(modules\)[\\/]'
if match(root, pattern) >= 0
let root = substitute(root, pattern, '', '')
endif