diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-13 12:06:08 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-16 23:17:39 -0300 |
commit | d8f3458ec745cf56dc692b55cc76d8323dbbfc53 (patch) | |
tree | 8d7633afd28546693af5719537c4e75f1ba99eec /src/nvim/syntax.h | |
parent | 9a2dd7c4987679106fba24fb7702a11aba6b6ccf (diff) | |
download | rneovim-d8f3458ec745cf56dc692b55cc76d8323dbbfc53.tar.gz rneovim-d8f3458ec745cf56dc692b55cc76d8323dbbfc53.tar.bz2 rneovim-d8f3458ec745cf56dc692b55cc76d8323dbbfc53.zip |
syntax: Refactor to store all term and gui attributes independently
Now the attrentry_T structure will store all attributes in separate fields for
cterm and rgb UIs.
Diffstat (limited to 'src/nvim/syntax.h')
-rw-r--r-- | src/nvim/syntax.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/syntax.h b/src/nvim/syntax.h index 93088180b9..af2ac719c6 100644 --- a/src/nvim/syntax.h +++ b/src/nvim/syntax.h @@ -16,7 +16,6 @@ #define HL_UNDERLINE 0x08 #define HL_UNDERCURL 0x10 #define HL_STANDOUT 0x20 -#define HL_ALL 0x3f #define HL_CONTAINED 0x01 /* not used on toplevel */ #define HL_TRANSP 0x02 /* has no highlighting */ |