Merge pull request #171 from mattn/fix_bundle_paths

Fixes bundle paths. For example ftbundle add 'vim-airline/./autoload' in...
This commit is contained in:
Bailey Ling 2013-08-21 21:12:41 -07:00
commit 18a6083b0a
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ function! airline#extensions#load()
" load all other extensions not part of the default distribution
for file in split(globpath(&rtp, "autoload/airline/extensions/*.vim"), '\n')
if match(file, '\vvim-airline(/|\\)autoload') < 0
if match(fnamemodify(file, ':p'), '\vvim-airline(/|\\)autoload') < 0
let name = fnamemodify(file, ':t:r')
if !get(g:, 'airline#extensions#'.name.'#enabled', 1)
continue