mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
tui: 'guicursor' color
For now only supports valid hex colors (does not check for the validity the hex color) when termguicolors is set, otherwise it won't attempt to change the cursor color.
This commit is contained in:

committed by
Justin M. Keyes

parent
dd4a5fcbb6
commit
54bab0019b
@@ -5,10 +5,11 @@
|
||||
|
||||
#include "nvim/buffer_defs.h"
|
||||
|
||||
/*
|
||||
* Terminal highlighting attribute bits.
|
||||
* Attributes above HL_ALL are used for syntax highlighting.
|
||||
*/
|
||||
|
||||
/// Terminal highlighting attribute bits.
|
||||
/// Attributes above HL_ALL are used for syntax highlighting.
|
||||
/// \addtogroup HL_ATTRIBUTES
|
||||
/// @{
|
||||
#define HL_NORMAL 0x00
|
||||
#define HL_INVERSE 0x01
|
||||
#define HL_BOLD 0x02
|
||||
@@ -16,6 +17,7 @@
|
||||
#define HL_UNDERLINE 0x08
|
||||
#define HL_UNDERCURL 0x10
|
||||
#define HL_STANDOUT 0x20
|
||||
/// @}
|
||||
|
||||
#define HL_CONTAINED 0x01 /* not used on toplevel */
|
||||
#define HL_TRANSP 0x02 /* has no highlighting */
|
||||
|
Reference in New Issue
Block a user