mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 23:06:14 +00:00
19 lines
460 B
C
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
|