diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-07-19 02:26:03 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-01 15:28:50 -0400 |
commit | d536fb018fae724937854b9583f45cf41d0380c8 (patch) | |
tree | ed310136651938fac51d57a369416b84ddd825a6 /src/nvim/hardcopy.h | |
parent | c0dbd8df959e2c0dfc4bd6ffd596022f9e023a80 (diff) | |
download | rneovim-d536fb018fae724937854b9583f45cf41d0380c8.tar.gz rneovim-d536fb018fae724937854b9583f45cf41d0380c8.tar.bz2 rneovim-d536fb018fae724937854b9583f45cf41d0380c8.zip |
hardcopy: bold,italic,underline are TriState
Diffstat (limited to 'src/nvim/hardcopy.h')
-rw-r--r-- | src/nvim/hardcopy.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/nvim/hardcopy.h b/src/nvim/hardcopy.h index a70b20e6f5..c6a3321b08 100644 --- a/src/nvim/hardcopy.h +++ b/src/nvim/hardcopy.h @@ -2,10 +2,11 @@ #define NVIM_HARDCOPY_H #include <stdint.h> -#include <stdlib.h> // for size_t +#include <stdlib.h> // for size_t -#include "nvim/types.h" // for char_u -#include "nvim/ex_cmds_defs.h" // for exarg_T +#include "nvim/globals.h" // for TriState +#include "nvim/types.h" // for char_u +#include "nvim/ex_cmds_defs.h" // for exarg_T /* * Structure to hold printing color and font attributes. @@ -13,9 +14,9 @@ typedef struct { uint32_t fg_color; uint32_t bg_color; - int bold; - int italic; - int underline; + TriState bold; + TriState italic; + TriState underline; int undercurl; } prt_text_attr_T; |