File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 4545// TODO: What does DRAW_TRANSP flag do? If the background isn't drawn when
4646// this flag is set, then sometimes the character after the cursor becomes
4747// blank. Everything seems to work fine by just ignoring this flag.
48- #define DRAW_TRANSP 0x01 /* draw with transparant bg */
49- #define DRAW_BOLD 0x02 /* draw bold text */
50- #define DRAW_UNDERL 0x04 /* draw underline text */
51- #define DRAW_UNDERC 0x08 /* draw undercurl text */
52- #define DRAW_ITALIC 0x10 /* draw italic text */
48+ #define DRAW_TRANSP 0x01 // draw with transparent bg
49+ #define DRAW_BOLD 0x02 // draw bold text
50+ #define DRAW_UNDERL 0x04 // draw underline text
51+ #define DRAW_UNDERC 0x08 // draw undercurl text
52+ #define DRAW_ITALIC 0x10 // draw italic text
5353#define DRAW_CURSOR 0x20
54- #define DRAW_WIDE 0x80 /* draw wide text */
54+ #define DRAW_STRIKE 0x40 // draw strikethrough text
55+ #define DRAW_UNDERDOUBLE 0x80 // draw double underline
56+ #define DRAW_UNDERDOTTED 0x100 // draw dotted underline
57+ #define DRAW_UNDERDASHED 0x200 // draw dashed underline
58+ #define DRAW_WIDE 0x1000 // (MacVim only) draw wide text
59+ #define DRAW_COMP 0x2000 // (MacVim only) drawing composing char
5560
5661
5762static NSString *MMWideCharacterAttributeName = @" MMWideChar" ;
You can’t perform that action at this time.
0 commit comments