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/digraph.c | |
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/digraph.c')
-rw-r--r-- | src/nvim/digraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/digraph.c b/src/nvim/digraph.c index 733b3d3d5d..c4e5f25719 100644 --- a/src/nvim/digraph.c +++ b/src/nvim/digraph.c @@ -13,7 +13,6 @@ #include "nvim/charset.h" #include "nvim/digraph.h" #include "nvim/eval/typval.h" -#include "nvim/ex_cmds2.h" #include "nvim/ex_docmd.h" #include "nvim/ex_getln.h" #include "nvim/garray.h" @@ -24,6 +23,7 @@ #include "nvim/message.h" #include "nvim/normal.h" #include "nvim/os/input.h" +#include "nvim/runtime.h" #include "nvim/screen.h" #include "nvim/strings.h" #include "nvim/vim.h" |