vim-airline/autoload/airline/extensions/example.vim

44 lines
1.6 KiB
VimL
Raw Normal View History

2013-08-16 18:04:03 +00:00
" MIT License. Copyright (c) 2013 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
2013-08-16 18:04:03 +00:00
" Extension specific variables can be defined the usual fashion.
if !exists('g:airline#extensions#example#number_of_cats')
let g:airline#extensions#example#number_of_cats = 42
endif
2013-08-28 02:36:12 +00:00
" First we define an init function that will be invoked from extensions.vim
function! airline#extensions#example#init(ext)
2013-08-28 02:36:12 +00:00
" Here we define a new part for the plugin. This allows users to place this
" extension in arbitrary locations.
let g:airline_parts.cats = '%{airline#extensions#example#get_cats()}'
" Next up we add a funcref so that we can run some code prior to the
" statusline getting modifed.
call a:ext.add_statusline_func('airline#extensions#example#apply')
2013-08-16 18:04:03 +00:00
2013-08-28 02:36:12 +00:00
" You can also add a funcref for inactive statuslines.
" call a:ext.add_inactive_statusline_func('airline#extensions#example#unapply')
2013-08-16 18:04:03 +00:00
endfunction
" This function will be invoked just prior to the statusline getting modified.
function! airline#extensions#example#apply(...)
" First we check for the filetype.
2013-08-16 18:04:03 +00:00
if &filetype == "nyancat"
" Let's use a helper function. It will take care of ensuring that the
" window-local override exists (and create one based on the global
" airline_section if not), and prepend to it.
2013-08-28 02:36:12 +00:00
call airline#extensions#prepend_to_section('x', g:airline_parts.cats)
2013-08-16 18:04:03 +00:00
endif
endfunction
" Finally, this function will be invoked from the statusline.
function! airline#extensions#example#get_cats()
let cats = ''
for i in range(1, g:airline#extensions#example#number_of_cats)
let cats .= ' (,,,)=(^.^)=(,,,) '
endfor
return cats
endfunction