Mercurial > vim
view ci/if_ver-cmd.vim @ 28706:c655908382fa v8.2.4877
patch 8.2.4877: MS-Windows: Wrongly using Normal colors for termguicolors
Commit: https://github.com/vim/vim/commit/d560014e032e0646234a56af18ae1bfa6c1f5c90
Author: Christian Brabandt <cb@256bit.org>
Date: Thu May 5 21:09:54 2022 +0100
patch 8.2.4877: MS-Windows: Wrongly using Normal colors for termguicolors
Problem: MS-Windows: Using Normal colors for termguicolors causes problems.
Solution: Do not use Normal colors to set sg_gui_fg and sg_gui_bg.
(Christian Brabandt, closes #10317, closes #10241)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 05 May 2022 22:15:03 +0200 |
parents | 27ff44268da5 |
children |
line wrap: on
line source
" Provide 'PrintVer' command to print the interface versions. func s:print_ver(lang, ...) if has(a:lang) exec a:lang join(a:000) else echo 'N/A' endif echo '' endfunc command -nargs=+ PrintVer call <SID>print_ver(<f-args>)