Files
neovim/src/nvim/popupmnu.h
2017-04-25 20:45:59 +02:00

19 lines
460 B
C

#ifndef NVIM_POPUPMNU_H
#define NVIM_POPUPMNU_H
#include "nvim/types.h"
/// Used for popup menu items.
typedef struct {
char_u *pum_text; // main menu text
char_u *pum_kind; // extra kind text (may be truncated)
char_u *pum_extra; // extra menu text (may be truncated)
char_u *pum_info; // extra info
} pumitem_T;
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "popupmnu.h.generated.h"
#endif
#endif // NVIM_POPUPMNU_H