diff options
Diffstat (limited to 'src/nvim/insexpand.h')
-rw-r--r-- | src/nvim/insexpand.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/nvim/insexpand.h b/src/nvim/insexpand.h new file mode 100644 index 0000000000..8e183455ca --- /dev/null +++ b/src/nvim/insexpand.h @@ -0,0 +1,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 |