diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-04 19:37:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-04 19:37:58 +0200 |
commit | e861da247ea63024179467a9ad1923308951c0f0 (patch) | |
tree | 976cd9950743cbf49bd3bef4608c3875e1763c9c /src/nvim/hardcopy.h | |
parent | a4c944762315c535fc7986d734e383eccc9f1863 (diff) | |
parent | c51c2f5a65881b2057907338099e12fa19811d41 (diff) | |
download | rneovim-e861da247ea63024179467a9ad1923308951c0f0.tar.gz rneovim-e861da247ea63024179467a9ad1923308951c0f0.tar.bz2 rneovim-e861da247ea63024179467a9ad1923308951c0f0.zip |
Merge #8749 from janlazo/clint-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; |