blob: bf6bad1a86c3fbf4aeabddfd70cafef9de68dc1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef NVIM_HIGHLIGHT_GROUP_H
#define NVIM_HIGHLIGHT_GROUP_H
#include "nvim/api/private/helpers.h"
#include "nvim/highlight_defs.h"
#include "nvim/types.h"
#define MAX_HL_ID 20000 // maximum value for a highlight ID.
typedef struct {
char *name;
RgbValue color;
} color_name_table_T;
extern color_name_table_T color_name_table[];
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "highlight_group.h.generated.h"
#endif
#endif // NVIM_HIGHLIGHT_GROUP_H
|