mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 06:46:07 +00:00
fix(highlight): properly deal with underline mask when listing (#22057)
This commit is contained in:
@@ -18,8 +18,8 @@ typedef enum {
|
||||
// The next three bits are all underline styles
|
||||
HL_UNDERLINE_MASK = 0x38,
|
||||
HL_UNDERLINE = 0x08,
|
||||
HL_UNDERDOUBLE = 0x10,
|
||||
HL_UNDERCURL = 0x18,
|
||||
HL_UNDERCURL = 0x10,
|
||||
HL_UNDERDOUBLE = 0x18,
|
||||
HL_UNDERDOTTED = 0x20,
|
||||
HL_UNDERDASHED = 0x28,
|
||||
// 0x30 and 0x38 spare for underline styles
|
||||
|
Reference in New Issue
Block a user