diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-19 19:20:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 19:20:39 +0800 |
commit | 2af9be3db59b2e26268dc62cb65e673e2f7d4783 (patch) | |
tree | 37d12b5e0ff7b9847c2504c544e691733015a577 /src/nvim/message.c | |
parent | 5dc43265b1f966a9653cc552fa5301ee487a8116 (diff) | |
download | rneovim-2af9be3db59b2e26268dc62cb65e673e2f7d4783.tar.gz rneovim-2af9be3db59b2e26268dc62cb65e673e2f7d4783.tar.bz2 rneovim-2af9be3db59b2e26268dc62cb65e673e2f7d4783.zip |
vim-patch:8.1.1966: some code in options.c fits better elsewhere (#19840)
Problem: Some code in options.c fits better elsewhere.
Solution: Move functions from options.c to other files. (Yegappan
Lakshmanan, closes vim/vim#4889)
https://github.com/vim/vim/commit/e677df8d93772a705f40a94f3c871aee78fe4d99
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r-- | src/nvim/message.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 95460e1aaf..6cc68edb82 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -26,6 +26,7 @@ #include "nvim/getchar.h" #include "nvim/grid.h" #include "nvim/highlight.h" +#include "nvim/indent.h" #include "nvim/input.h" #include "nvim/keycodes.h" #include "nvim/main.h" |