blob: 2b181f2c4a63a5cb7d0878b07ab63c8079406f86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef NVIM_POPUPMNU_H
#define NVIM_POPUPMNU_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
|