WADA Takashi
2022-07-27 10:59:39 +09:00
parent ebb89a0846
commit 61dc750149
+2 -1
View File
@@ -17,7 +17,8 @@ function! airline#extensions#taglist#currenttag()
let tlist_updated = 1 let tlist_updated = 1
endif endif
if !tlist_updated && exists('*Tlist_Get_Filenames()') if !tlist_updated && exists('*Tlist_Get_Filenames()')
if stridx(Tlist_Get_Filenames(), expand('%:p')) < 0 let tlist_filenames = Tlist_Get_Filenames()
if stridx(type(tlist_filenames) == type([]) ? join(tlist_filenames, '\n') : tlist_filenames, expand('%:p')) < 0
TlistUpdate TlistUpdate
endif endif
endif endif