From dc1b607f5611a047dd8779a122d0cd50b9af737d Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Thu, 19 Jan 2023 21:45:37 +0100 Subject: [PATCH] tagbar: break too long line --- autoload/airline/extensions/tagbar.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autoload/airline/extensions/tagbar.vim b/autoload/airline/extensions/tagbar.vim index 9df6a63f..7e6b9df8 100644 --- a/autoload/airline/extensions/tagbar.vim +++ b/autoload/airline/extensions/tagbar.vim @@ -43,7 +43,8 @@ function! airline#extensions#tagbar#currenttag() let flags = get(g:, 'airline#extensions#tagbar#flags', '') " function tagbar#currenttag does not exist, if filetype is not enabled if s:airline_tagbar_last_lookup_time != localtime() && exists("*tagbar#currenttag") - let s:airline_tagbar_last_lookup_val = tagbar#currenttag('%s', '', flags, get(g:, 'airline#extensions#tagbar#searchmethod', 'nearest-stl')) + let s:airline_tagbar_last_lookup_val = tagbar#currenttag('%s', '', flags, + \ get(g:, 'airline#extensions#tagbar#searchmethod', 'nearest-stl')) let s:airline_tagbar_last_lookup_time = localtime() endif return s:airline_tagbar_last_lookup_val