0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

runtime(doc): mention improved rendering with 'termguicolors'

related: #9715

Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Christian Brabandt
2025-09-24 17:43:15 +00:00
parent 20e78ee807
commit a7680a1a69

View File

@@ -8919,14 +8919,16 @@ A jump table for the options with a short description can be found at |Q_op|.
When on, uses |highlight-guifg| and |highlight-guibg| attributes in When on, uses |highlight-guifg| and |highlight-guibg| attributes in
the terminal (thus using 24-bit color). the terminal (thus using 24-bit color).
Requires a ISO-8613-3 compatible terminal. If setting this option Requires an ISO-8613-3 compatible terminal. If setting this option
does not work (produces a colorless UI) reading |xterm-true-color| does not work (produces a colorless UI) reading |xterm-true-color|
might help. might help.
For Win32 console, Windows 10 version 1703 (Creators Update) or later For Win32 console, Windows 10 version 1703 (Creators Update) or later
is required. Use this check to find out: > is required. Use this check to find out: >
if has('vcon') if has('vcon')
< This requires Vim to be built with the |+vtp| feature. < This requires Vim to be built with the |+vtp| feature. Enabling
'termguicolors' also enable Virtual Terminal Processing (VTP) in the
Windows console, which improves rendering of multi-byte characters.
Note that the "cterm" attributes are still used, not the "gui" ones. Note that the "cterm" attributes are still used, not the "gui" ones.