neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

highlight_group.h (500B)


      1 #pragma once
      2 
      3 #include "nvim/api/keysets_defs.h"  // IWYU pragma: keep
      4 #include "nvim/api/private/defs.h"  // IWYU pragma: keep
      5 #include "nvim/cmdexpand_defs.h"  // IWYU pragma: keep
      6 #include "nvim/highlight_defs.h"
      7 #include "nvim/types_defs.h"  // IWYU pragma: keep
      8 
      9 enum { MAX_HL_ID = 20000, };  ///< maximum value for a highlight ID.
     10 
     11 typedef struct {
     12  char *name;
     13  RgbValue color;
     14 } color_name_table_T;
     15 extern color_name_table_T color_name_table[708];
     16 
     17 #include "highlight_group.h.generated.h"