Files
neovim/src/nvim/highlight_group.h
zeertzjq 342d18b91e refactor: remove some unused includes (#19740)
Mostly avoids including eval.h, ex_cmds2.h and ex_docmd.h in other
headers.
2022-08-12 21:16:28 +08:00

21 lines
463 B
C

#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