2019-03-25 07:27:10 -04:00
|
|
|
" MIT License. Copyright (c) 2013-2019 Bailey Ling et al.
|
2013-08-18 14:50:22 -04:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-23 20:16:30 -04:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2013-09-10 11:37:25 -04:00
|
|
|
if !exists(':UndotreeToggle')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-21 11:14:12 -04:00
|
|
|
function! airline#extensions#undotree#apply(...)
|
2013-08-18 14:50:22 -04:00
|
|
|
if exists('t:undotree')
|
2013-08-23 23:16:14 -04:00
|
|
|
if &ft == 'undotree'
|
|
|
|
if exists('*t:undotree.GetStatusLine')
|
2019-01-22 17:44:52 -05:00
|
|
|
call airline#extensions#apply_left_override('undo', '%{exists("t:undotree") ? t:undotree.GetStatusLine() : ""}')
|
2013-08-23 23:16:14 -04:00
|
|
|
else
|
|
|
|
call airline#extensions#apply_left_override('undotree', '%f')
|
|
|
|
endif
|
2013-08-18 14:50:22 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
if &ft == 'diff' && exists('*t:diffpanel.GetStatusLine')
|
2019-01-22 17:44:52 -05:00
|
|
|
call airline#extensions#apply_left_override('diff', '%{exists("t:diffpanel") ? t:diffpanel.GetStatusLine() : ""}')
|
2013-08-18 14:50:22 -04:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#undotree#init(ext)
|
2013-08-23 17:22:20 -04:00
|
|
|
call a:ext.add_statusline_func('airline#extensions#undotree#apply')
|
2013-08-18 14:50:22 -04:00
|
|
|
endfunction
|