mirror of
https://github.com/neovim/neovim.git
synced 2026-04-19 05:50:39 +00:00
This allows us to keep track of the source higlight groups, and not only the final combined highlights.
14 lines
272 B
C
14 lines
272 B
C
#ifndef NVIM_HIGHLIGHT_H
|
|
#define NVIM_HIGHLIGHT_H
|
|
|
|
#include <stdbool.h>
|
|
#include "nvim/highlight_defs.h"
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/ui.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "highlight.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_HIGHLIGHT_H
|