diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-02 02:32:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-02 02:32:36 +0200 |
commit | 58422f17d8e7e5f2dcba099b8829e5d23554e980 (patch) | |
tree | 0ba8bc13df4a3712b182e17ca65ce9ca7fe45ecd /src/nvim/syntax.h | |
parent | a7569b50b769b61a2f10a024fab040443bd3e906 (diff) | |
parent | 3a69dbfca6642463ca8e19f814f71791f66332f3 (diff) | |
download | rneovim-58422f17d8e7e5f2dcba099b8829e5d23554e980.tar.gz rneovim-58422f17d8e7e5f2dcba099b8829e5d23554e980.tar.bz2 rneovim-58422f17d8e7e5f2dcba099b8829e5d23554e980.zip |
Merge #6423 from justinmk/guicursor
Diffstat (limited to 'src/nvim/syntax.h')
-rw-r--r-- | src/nvim/syntax.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/nvim/syntax.h b/src/nvim/syntax.h index af2ac719c6..574e3372e2 100644 --- a/src/nvim/syntax.h +++ b/src/nvim/syntax.h @@ -5,10 +5,11 @@ #include "nvim/buffer_defs.h" -/* - * Terminal highlighting attribute bits. - * Attributes above HL_ALL are used for syntax highlighting. - */ + +/// Terminal highlighting attribute bits. +/// Attributes above HL_ALL are used for syntax highlighting. +/// \addtogroup HL_ATTRIBUTES +/// @{ #define HL_NORMAL 0x00 #define HL_INVERSE 0x01 #define HL_BOLD 0x02 @@ -16,6 +17,7 @@ #define HL_UNDERLINE 0x08 #define HL_UNDERCURL 0x10 #define HL_STANDOUT 0x20 +/// @} #define HL_CONTAINED 0x01 /* not used on toplevel */ #define HL_TRANSP 0x02 /* has no highlighting */ |