This commit is contained in:
shmaryar
2019-07-01 09:18:33 +03:00
committed by Christian Brabandt
parent 28cd6253e9
commit 28dcb68bf3
4 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
" MIT License. Copyright (c) 2019 s1341 (github@shmarya.net)
" vim: et ts=2 sts=2 sw=2
scriptencoding utf-8
function! airline#extensions#vista#currenttag()
if get(w:, 'airline_active', 0)
return get(b:, 'vista_nearest_method_or_function', '')
endif
endfunction
function! airline#extensions#vista#init(ext)
call airline#parts#define_function('vista', 'airline#extensions#vista#currenttag')
endfunction