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