David Blume's GitList
Repositories
dotfiles.git
Code
Commits
Branches
Tags
Search
Tree:
2c4452d
Branches
Tags
main
pathogen
remove-vim-airline
vim-airline-disabled
vim-powerline
dotfiles.git
.vim
pack
plugins
start
vim-airline
autoload
airline
extensions
undotree.vim
Remove pathgen and use native vim packages. https://micro.quietmisdreavus.net/code/2020/03/15/vim8-packages/
David Blume
commited
2c4452d
at 2021-03-11 19:45:57
undotree.vim
Blame
History
Raw
" MIT License. Copyright (c) 2013-2018 Bailey Ling et al. " vim: et ts=2 sts=2 sw=2 scriptencoding utf-8 if !exists(':UndotreeToggle') finish endif function! airline#extensions#undotree#apply(...) if exists('t:undotree') if &ft == 'undotree' if exists('*t:undotree.GetStatusLine') call airline#extensions#apply_left_override('undo', '%{t:undotree.GetStatusLine()}') else call airline#extensions#apply_left_override('undotree', '%f') endif endif if &ft == 'diff' && exists('*t:diffpanel.GetStatusLine') call airline#extensions#apply_left_override('diff', '%{t:diffpanel.GetStatusLine()}') endif endif endfunction function! airline#extensions#undotree#init(ext) call a:ext.add_statusline_func('airline#extensions#undotree#apply') endfunction