Files
neovim/src/nvim/insexpand.h
zeertzjq a7b9920930 refactor: move FunPtr to types.h (#19466)
This type itself is not eval-specific. Moving it to types.h can avoid
including eval/funcs.h in many headers, and types.h is already included
by many headers.
2022-07-22 22:05:02 +08:00

18 lines
304 B
C

#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