mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 06:16:08 +00:00
21 lines
463 B
C
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
|