diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-12 21:16:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-12 21:16:28 +0800 |
commit | 342d18b91ec176c5e3aa6d32d439d01e6ac88ee6 (patch) | |
tree | d80917d2820d8ddaa81023f4bfd292bbfe88053e /src/nvim/buffer.h | |
parent | ac78639de8b89104ee8a360a48ee31a7900fe830 (diff) | |
download | rneovim-342d18b91ec176c5e3aa6d32d439d01e6ac88ee6.tar.gz rneovim-342d18b91ec176c5e3aa6d32d439d01e6ac88ee6.tar.bz2 rneovim-342d18b91ec176c5e3aa6d32d439d01e6ac88ee6.zip |
refactor: remove some unused includes (#19740)
Mostly avoids including eval.h, ex_cmds2.h and ex_docmd.h in other
headers.
Diffstat (limited to 'src/nvim/buffer.h')
-rw-r--r-- | src/nvim/buffer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/buffer.h b/src/nvim/buffer.h index b452eb227e..70dda8eaec 100644 --- a/src/nvim/buffer.h +++ b/src/nvim/buffer.h @@ -1,7 +1,8 @@ #ifndef NVIM_BUFFER_H #define NVIM_BUFFER_H -#include "nvim/eval.h" +#include "nvim/eval/typval.h" +#include "nvim/ex_cmds_defs.h" #include "nvim/func_attr.h" #include "nvim/macros.h" #include "nvim/memline.h" |