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