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