comparison src/gui.h @ 12317:2a8890b80923 v8.0.1038

patch 8.0.1038: strike-through text not supported commit https://github.com/vim/vim/commit/cf4b00c856ef714482d8d060332ac9a4d74e6b88 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 2 18:33:56 2017 +0200 patch 8.0.1038: strike-through text not supported Problem: Strike-through text not supported. Solution: Add support for the "strikethrough" attribute. (Christian Brabandt, Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Sat, 02 Sep 2017 18:45:04 +0200
parents 51888fb2599f
children 68d7bc045dbe
comparison
equal deleted inserted replaced
12316:a1d3a6d6af2c 12317:2a8890b80923
140 #define DRAW_UNDERC 0x08 /* draw undercurl text */ 140 #define DRAW_UNDERC 0x08 /* draw undercurl text */
141 #if defined(FEAT_GUI_GTK) 141 #if defined(FEAT_GUI_GTK)
142 # define DRAW_ITALIC 0x10 /* draw italic text */ 142 # define DRAW_ITALIC 0x10 /* draw italic text */
143 #endif 143 #endif
144 #define DRAW_CURSOR 0x20 /* drawing block cursor (win32) */ 144 #define DRAW_CURSOR 0x20 /* drawing block cursor (win32) */
145 #define DRAW_STRIKE 0x40 /* strikethrough */
145 146
146 /* For our own tearoff menu item */ 147 /* For our own tearoff menu item */
147 #define TEAR_STRING "-->Detach" 148 #define TEAR_STRING "-->Detach"
148 #define TEAR_LEN (9) /* length of above string */ 149 #define TEAR_LEN (9) /* length of above string */
149 150