remove usage of fugitive#detect as per request

https://github.com/tpope/vim-fugitive/issues/463
This commit is contained in:
Bailey Ling 2014-04-01 16:45:06 -04:00
parent c374af183a
commit d111e4edb3
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
" vim: et ts=2 sts=2 sw=2
let s:has_fugitive = exists('*fugitive#head')
let s:has_fugitive_detect = exists('*fugitive#detect')
let s:has_fugitive_detect = 0 " TODO: figure out alternative
let s:has_lawrencium = exists('*lawrencium#statusline')
let s:has_vcscommand = get(g:, 'airline#extensions#branch#use_vcscommand', 0) && exists('*VCSCommandGetStatusLine')