mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 9.0.0007: no support for double, dotted and dashed underlines
Problem: No support for double, dotted and dashed underlines. Solution: Add the termcap entries and highlight modes. (closes #9553)
This commit is contained in:
11
src/vim.h
11
src/vim.h
@@ -659,10 +659,13 @@ extern int (*dyn_libintl_wputenv)(const wchar_t *envstring);
|
||||
#define HL_ITALIC 0x04
|
||||
#define HL_UNDERLINE 0x08
|
||||
#define HL_UNDERCURL 0x10
|
||||
#define HL_STANDOUT 0x20
|
||||
#define HL_NOCOMBINE 0x40
|
||||
#define HL_STRIKETHROUGH 0x80
|
||||
#define HL_ALL 0xff
|
||||
#define HL_UNDERDOUBLE 0x20
|
||||
#define HL_UNDERDOTTED 0x40
|
||||
#define HL_UNDERDASHED 0x80
|
||||
#define HL_STANDOUT 0x100
|
||||
#define HL_NOCOMBINE 0x200
|
||||
#define HL_STRIKETHROUGH 0x400
|
||||
#define HL_ALL 0x7ff
|
||||
|
||||
// special attribute addition: Put message in history
|
||||
#define MSG_HIST 0x1000
|
||||
|
Reference in New Issue
Block a user