highlighter: vim9 script implementation of reset_hlcache

This commit is contained in:
Christian 2020-11-18 08:46:21 +01:00 committed by Christian Brabandt
parent b152059a98
commit aa8bd171f3
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09

View File

@ -350,4 +350,7 @@ else
def s:get_array(guifg: string, guibg: string, ctermfg: string, ctermbg: string, opts: list<string>): list<string> # {{{2
return [ guifg, guibg, ctermfg, ctermbg, empty(opts) ? '' : join(opts, ',') ]
enddef
def airline#highlighter#reset_hlcache(): void # {{{2
s:hl_groups = {}
enddef
endif