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