mirror of
https://github.com/neovim/neovim.git
synced 2025-10-14 05:46:12 +00:00
14 lines
303 B
C
14 lines
303 B
C
#ifndef NVIM_MENU_H
|
|
#define NVIM_MENU_H
|
|
|
|
#include <stdbool.h> // for bool
|
|
|
|
#include "nvim/ex_cmds_defs.h" // for exarg_T
|
|
#include "nvim/menu_defs.h"
|
|
#include "nvim/types.h" // for char_u and expand_T
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "menu.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_MENU_H
|