diff options
| author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-02 14:57:11 -0300 | 
|---|---|---|
| committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-02 14:57:15 -0300 | 
| commit | 3d167c49d2048009fa12f57198bd05ca06ac72f2 (patch) | |
| tree | a662a544bf596fe0fb9ccb71aa76df0c581e3c66 /src/nvim/syntax.h | |
| parent | 2eda611cbc9fc79b97d906f3810a2b5c0d928be6 (diff) | |
| parent | f468fb70cb6d82dca5b9a23706b4b6b70a3beab6 (diff) | |
| download | rneovim-3d167c49d2048009fa12f57198bd05ca06ac72f2.tar.gz rneovim-3d167c49d2048009fa12f57198bd05ca06ac72f2.tar.bz2 rneovim-3d167c49d2048009fa12f57198bd05ca06ac72f2.zip | |
Merge PR #1883 'More work on highlight tests + update documentation'
Diffstat (limited to 'src/nvim/syntax.h')
| -rw-r--r-- | src/nvim/syntax.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/src/nvim/syntax.h b/src/nvim/syntax.h index 9a284c8a8d..93088180b9 100644 --- a/src/nvim/syntax.h +++ b/src/nvim/syntax.h @@ -38,6 +38,12 @@  #define HL_CONCEAL     0x20000 /* can be concealed */  #define HL_CONCEALENDS 0x40000 /* can be concealed */ +typedef struct { +  char *name; +  RgbValue color; +} color_name_table_T; +extern color_name_table_T color_name_table[]; +  #ifdef INCLUDE_GENERATED_DECLARATIONS  # include "syntax.h.generated.h"  #endif | 
