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:
zeertzjq
2022-07-22 21:14:17 +08:00
committed by GitHub
parent bb7853a62d
commit 9d4a4f49ef
18 changed files with 1775 additions and 1726 deletions

View File

@@ -18,6 +18,7 @@
#include "nvim/charset.h"
#include "nvim/cursor_shape.h"
#include "nvim/eval.h"
#include "nvim/eval/vars.h"
#include "nvim/ex_cmds2.h"
#include "nvim/ex_docmd.h"
#include "nvim/fileio.h"