Merge pull request #2049 from kazukazuinaina/fix_echo_extension_load
Fix echo extension load
This commit is contained in:
commit
c3cda92272
|
@ -151,7 +151,9 @@ function! airline#extensions#load()
|
||||||
call airline#extensions#{ext}#init(s:ext)
|
call airline#extensions#{ext}#init(s:ext)
|
||||||
catch /^Vim\%((\a\+)\)\=:E117/ " E117, function does not exist
|
catch /^Vim\%((\a\+)\)\=:E117/ " E117, function does not exist
|
||||||
call airline#util#warning("Extension '".ext."' not installed, ignoring!")
|
call airline#util#warning("Extension '".ext."' not installed, ignoring!")
|
||||||
|
continue
|
||||||
endtry
|
endtry
|
||||||
|
call add(s:loaded_ext, ext)
|
||||||
endfor
|
endfor
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue