From cb924764a40deea7e9c94fc60eac144e318a6f16 Mon Sep 17 00:00:00 2001 From: Judit Novak Date: Tue, 28 Jan 2025 17:17:37 +0100 Subject: 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. --- runtime/syntax/dircolors.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/syntax/dircolors.vim b/runtime/syntax/dircolors.vim index 74a7068488..d968ed8fdd 100644 --- a/runtime/syntax/dircolors.vim +++ b/runtime/syntax/dircolors.vim @@ -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 -- cgit