mirror of
https://github.com/neovim/neovim.git
synced 2026-02-04 19:42:21 +10:00
Allow Include What You Use to remove unnecessary includes and only include what is necessary. This helps with reducing compilation times and makes it easier to visualise which dependencies are actually required. Work on https://github.com/neovim/neovim/issues/549, but doesn't close it since this only works fully for .c files and not headers.
26 lines
588 B
C
26 lines
588 B
C
#ifndef NVIM_OPTION_H
|
|
#define NVIM_OPTION_H
|
|
|
|
#include "nvim/ex_cmds_defs.h"
|
|
|
|
/// Returned by get_option_value().
|
|
typedef enum {
|
|
gov_unknown,
|
|
gov_bool,
|
|
gov_number,
|
|
gov_string,
|
|
gov_hidden_bool,
|
|
gov_hidden_number,
|
|
gov_hidden_string,
|
|
} getoption_T;
|
|
|
|
// flags for buf_copy_options()
|
|
#define BCO_ENTER 1 // going to enter the buffer
|
|
#define BCO_ALWAYS 2 // always copy the options
|
|
#define BCO_NOHELP 4 // don't touch the help related options
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "option.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_OPTION_H
|