neovim

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

vars.h (525B)


      1 #pragma once
      2 
      3 #include <stddef.h>  // IWYU pragma: keep
      4 
      5 #include "nvim/eval_defs.h"
      6 #include "nvim/ex_cmds_defs.h"  // IWYU pragma: keep
      7 #include "nvim/garray_defs.h"  // IWYU pragma: keep
      8 #include "nvim/hashtab_defs.h"  // IWYU pragma: keep
      9 #include "nvim/option_defs.h"  // IWYU pragma: keep
     10 #include "nvim/types_defs.h"  // IWYU pragma: keep
     11 
     12 /// Array mapping values from MessagePackType to corresponding list pointers
     13 extern const list_T *eval_msgpack_type_lists[NUM_MSGPACK_TYPES];
     14 
     15 #include "eval/vars.h.generated.h"