fix(runtime): "E121 Undefined variable s:termguicolors" #32209

Problem: dircolors syntaxt termguicolors support was not taking dynamic
         termguicolors changes into account.

Solution: initializing missing script-internal data on dynamic
          termguicolors change.
This commit is contained in:
Judit Novak
2025-01-28 17:17:37 +01:00
committed by GitHub
parent 318676ad13
commit cb924764a4

View File

@ -85,6 +85,9 @@ endfunction
function! s:get_hi_str(color, place) abort
if a:color >= 0 && a:color <= 255
if has('gui_running') || &termguicolors
if ! exists("s:termguicolors")
call s:set_guicolors()
endif
return ' gui' . a:place . '=' . s:termguicolors[a:color]
elseif a:color <= 7 || &t_Co == 256 || &t_Co == 88
return ' cterm' . a:place . '=' . a:color