highlighter: even further refinement of when to skip groups

This commit is contained in:
Christian Brabandt 2018-11-13 13:57:15 +01:00
parent cfd373a5a2
commit f05f649be8
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
1 changed files with 1 additions and 3 deletions

View File

@ -271,10 +271,8 @@ function! airline#highlighter#highlight(modes, ...)
if bnr > 0 && index(buffers_in_tabpage, bnr) == -1
continue
endif
elseif (empty(suffix) && name =~# '_to_') ||
\ (name[0:10] is# 'airline_tab' && !empty(suffix))
elseif (name =~# '_to_') || (name[0:10] is# 'airline_tab' && !empty(suffix))
" group will be redefined below at exec_separator
" (except for _inactive groups)
" or is not needed for tabline with '_inactive' suffix
" since active flag is 1 for builder)
continue