mirror of
https://github.com/neovim/neovim.git
synced 2026-03-15 05:17:23 +00:00
Problem: Complete_info().selected may be wrong.
Solution: Update cp_number if it was never set. (issue vim/vim#6945)
f9d51354de
Misc changes:
For variables and function parameters that use "Direction" enum values,
update their type from from "int" to "Direction".
It is hard to review function parameters that must accept
"Direction" enum values only.
15 lines
275 B
C
15 lines
275 B
C
#ifndef NVIM_SPELL_H
|
|
#define NVIM_SPELL_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/spell_defs.h"
|
|
#include "nvim/ex_cmds_defs.h"
|
|
#include "nvim/globals.h"
|
|
#include "nvim/vim.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "spell.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_SPELL_H
|