From a7bc1880ccca1114bb57018fa74e259a33dbaa4e Mon Sep 17 00:00:00 2001 From: h-east Date: Tue, 22 Oct 2024 15:30:16 +0900 Subject: [PATCH] Avoid highlight-group 'Ignore' issue --- tools/makehtml.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/makehtml.vim b/tools/makehtml.vim index 2d3f8fb9e..75bfeadba 100644 --- a/tools/makehtml.vim +++ b/tools/makehtml.vim @@ -24,6 +24,9 @@ function! MakeHtmlAll(...) let s:log = [] call MakeTagsFile() echo "" + " Avoid problem with highlight group helpIgnore character not being removed + hi Ignore guifg=#ffffff ctermfg=white + let files = split(glob('*.??[tx]'), '\n') for i in range(len(files)) let file = files[i]