mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 11:26:37 +00:00
vim-patch:8.1.1933: the eval.c file is too big (#19462)
Problem: The eval.c file is too big.
Solution: Move code related to variables to evalvars.c. (Yegappan
Lakshmanan, closes vim/vim#4868)
0522ba0359
Name the new file eval/vars.c instead.
This commit is contained in:
10
src/nvim/eval/vars.h
Normal file
10
src/nvim/eval/vars.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef NVIM_EVAL_VARS_H
|
||||
#define NVIM_EVAL_VARS_H
|
||||
|
||||
#include "nvim/eval/funcs.h" // For FunPtr
|
||||
#include "nvim/ex_cmds_defs.h" // For exarg_T
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
# include "eval/vars.h.generated.h"
|
||||
#endif
|
||||
#endif // NVIM_EVAL_VARS_H
|
Reference in New Issue
Block a user