neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit cb924764a40deea7e9c94fc60eac144e318a6f16
parent 318676ad13483fa1f9b2733d6915620f2525ca12
Author: Judit Novak <judit.novak@canonical.com>
Date:   Tue, 28 Jan 2025 17:17:37 +0100

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.
Diffstat:
Mruntime/syntax/dircolors.vim | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git 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