diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-26 18:49:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 18:49:29 +0800 |
commit | 6547f4397fe643f194763306f8fcdfc6f6ce4b24 (patch) | |
tree | 5301f5cc0801a477219a50902228916dce6ae08b /src/nvim/optionstr.c | |
parent | 06d5c6332deeb52ccd78d632d1fb28df91faf7dc (diff) | |
download | rneovim-6547f4397fe643f194763306f8fcdfc6f6ce4b24.tar.gz rneovim-6547f4397fe643f194763306f8fcdfc6f6ce4b24.tar.bz2 rneovim-6547f4397fe643f194763306f8fcdfc6f6ce4b24.zip |
vim-patch:8.1.2331: the option.c file is still very big (#19954)
Problem: The option.c file is still very big.
Solution: Move a few functions to where they fit better. (Yegappan
Lakshmanan, closes vim/vim#4895)
https://github.com/vim/vim/commit/7bae0b1bc84a95d565ffab38cf7f82ad21c656b6
vim-patch:9.0.0271: using INIT() in non-header files
Problem: Using INIT() in non-header files.
Solution: Remove INIT(). (closes vim/vim#10981)
https://github.com/vim/vim/commit/9b7d2a959646560f5770329f4428c4739eed4656
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r-- | src/nvim/optionstr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c index ec62c4b8ad..e4cdf883fe 100644 --- a/src/nvim/optionstr.c +++ b/src/nvim/optionstr.c @@ -18,6 +18,7 @@ #include "nvim/drawscreen.h" #include "nvim/eval.h" #include "nvim/eval/vars.h" +#include "nvim/ex_getln.h" #include "nvim/hardcopy.h" #include "nvim/highlight_group.h" #include "nvim/indent.h" |