2020-06-10 20:18:30 +00:00
|
|
|
" MIT License. Copyright (c) 2020 s1341 (github@shmarya.net)
|
2019-12-13 07:55:56 +00:00
|
|
|
" Plugin: https://github.com/liuchengxu/vista.vim
|
2019-07-01 06:18:33 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
scriptencoding utf-8
|
2020-03-28 09:15:29 +00:00
|
|
|
if !get(g:, 'loaded_vista', 0)
|
|
|
|
finish
|
|
|
|
endif
|
2019-07-01 06:18:33 +00:00
|
|
|
|
2020-08-14 15:17:01 +00:00
|
|
|
function! airline#extensions#vista#currenttag() abort
|
2019-07-01 06:18:33 +00:00
|
|
|
if get(w:, 'airline_active', 0)
|
2020-08-14 15:17:01 +00:00
|
|
|
return airline#util#shorten(get(b:, 'vista_nearest_method_or_function', ''), 91, 9)
|
2019-07-01 06:18:33 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2020-08-14 15:17:01 +00:00
|
|
|
function! airline#extensions#vista#init(ext) abort
|
2019-07-01 06:18:33 +00:00
|
|
|
call airline#parts#define_function('vista', 'airline#extensions#vista#currenttag')
|
|
|
|
endfunction
|