mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 06:46:07 +00:00

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.
18 lines
304 B
C
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
|