blob: def7f490783a06edbf16c311f098b02cb81e349f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef NVIM_INSEXPAND_H
#define NVIM_INSEXPAND_H
#include "nvim/eval/funcs.h"
#include "nvim/vim.h"
/// state for pum_ext_select_item.
EXTERN struct {
bool active;
int item;
bool insert;
bool finish;
} pum_want;
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "insexpand.h.generated.h"
#endif
#endif // NVIM_INSEXPAND_H
|