mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 01:46:29 +00:00
25 lines
579 B
C
25 lines
579 B
C
#pragma once
|
|
|
|
#include "nvim/ex_cmds_defs.h" // IWYU pragma: keep
|
|
#include "nvim/spell_defs.h" // IWYU pragma: export
|
|
#include "nvim/vim_defs.h" // IWYU pragma: keep
|
|
|
|
/// First language that is loaded, start of the linked list of loaded languages.
|
|
extern slang_T *first_lang;
|
|
|
|
/// file used for "zG" and "zW"
|
|
extern char *int_wordlist;
|
|
|
|
extern spelltab_T spelltab;
|
|
extern bool did_set_spelltab;
|
|
|
|
extern char *e_format;
|
|
|
|
// Remember what "z?" replaced.
|
|
extern char *repl_from;
|
|
extern char *repl_to;
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "spell.h.generated.h"
|
|
#endif
|